/* style.css */

/* Reset & Variables */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #111111;
  --bg-tertiary: #161616;
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(239, 98, 159, 0.35);
  --glass-glow: rgba(238, 205, 163, 0.05);
  
  --accent-gold: #eecda3;
  --accent-pink: #ef629f;
  --accent-gradient: linear-gradient(135deg, #eecda3 0%, #ef629f 100%);
  --accent-gradient-hover: linear-gradient(135deg, #ef629f 0%, #eecda3 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elastic: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --max-width: 1280px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink);
}

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.light-text {
  font-weight: 300;
  color: var(--text-primary);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px 24px;
}

section {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Custom Cursor Glow */
.cursor-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(238, 205, 163, 0.15) 0%, rgba(239, 98, 159, 0.06) 50%, transparent 100%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}


/* Background Cyber Grid System */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.grid-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 15%, rgba(238, 205, 163, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(239, 98, 159, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(238, 205, 163, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  opacity: 0.75;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 80%);
  top: -10%;
  right: -5%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-pink) 0%, transparent 80%);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
  animation-duration: 30s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 80%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  animation-duration: 35s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -40px) scale(1.15);
  }
  100% {
    transform: translate(-30px, 60px) scale(0.9);
  }
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gradient);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-pink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 4px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #050505;
  border: none;
  box-shadow: 0 4px 15px rgba(239, 98, 159, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(239, 98, 159, 0.5), 0 0 20px rgba(238, 205, 163, 0.3);
  color: #050505;
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-nav {
  font-size: 0.85rem;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-nav:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #050505;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 98, 159, 0.3);
}

.btn-block {
  width: 100%;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  transition: border-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(239, 98, 159, 0.12);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--header-height) + 20px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 205, 163, 0.08);
  border: 1px solid rgba(238, 205, 163, 0.2);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-pink);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 98, 159, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 98, 159, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 98, 159, 0); }
}

.hero-title {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-yt {
  position: relative;
  background: #FF0000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: visible !important;
  z-index: 1;
  box-shadow: 
    0 4px 20px rgba(255, 0, 0, 0.5), 
    0 0 15px rgba(255, 0, 0, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  text-shadow: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.3s ease;
}

.btn-yt::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  bottom: -4px;
  background: #FF0000;
  border-radius: 50px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-yt:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 15px 35px rgba(255, 0, 0, 0.75), 
    0 0 30px rgba(255, 0, 0, 0.5), 
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn-yt:hover::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  filter: blur(28px);
  opacity: 1;
}

.btn-ig {
  position: relative;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: visible !important;
  z-index: 1;
  box-shadow: 
    0 4px 20px rgba(221, 42, 123, 0.45), 
    0 0 15px rgba(129, 52, 175, 0.25), 
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  text-shadow: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              background-color 0.3s ease, 
              border-color 0.3s ease,
              color 0.3s ease;
}

.btn-ig::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  bottom: -4px;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  border-radius: 50px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-ig:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 
    0 15px 35px rgba(221, 42, 123, 0.75), 
    0 0 30px rgba(129, 52, 175, 0.5), 
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

.btn-ig:hover::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  filter: blur(28px);
  opacity: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-container {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  padding: 8px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.profile-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--accent-gradient);
  z-index: 0;
  filter: blur(30px);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.profile-image-container:hover::before {
  opacity: 1;
  filter: blur(40px);
  transform: scale(1.05);
}

.glow-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, 
              var(--accent-gradient) border-box;
  z-index: 1;
  animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition-medium);
  border: 4px solid var(--bg-primary);
}

.profile-image-container:hover .profile-img {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.02);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 4px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* Stats Section */
.stats-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}

.stat-card {
  text-align: center;
  padding: 30px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-title);
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About / Timeline Section */
.about-section {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-greeting {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-bio {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.skill-tag:hover {
  background: rgba(238, 205, 163, 0.08);
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-left: 24px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-pink));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(238, 205, 163, 0.4);
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Social Media Section */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
}

.social-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  transition: var(--transition-medium);
}

.social-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.social-handle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.social-followers {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 48px; /* ensures text wraps evenly across cards */
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card .btn {
  width: 100%;
  font-size: 0.85rem;
  padding: 10px 18px;
  pointer-events: none; /* card container handles clicks */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Platform-Specific Brand Colors & Hover Glows */
.social-card .social-icon-wrapper {
  transition: transform var(--transition-medium), background var(--transition-medium), color var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.05);
}

/* YouTube Card */
.social-card[data-platform="youtube"] {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 0, 0, 0.01) 100%);
  border-color: rgba(255, 0, 0, 0.15);
}
.social-card[data-platform="youtube"]:hover {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 
    0 15px 35px rgba(255, 0, 0, 0.25), 
    0 0 25px rgba(255, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-card[data-platform="youtube"] .social-icon-wrapper {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.25);
  background: rgba(255, 0, 0, 0.05);
}
.social-card[data-platform="youtube"]:hover .social-icon-wrapper {
  background: #ff0000;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.35);
}
.social-card[data-platform="youtube"]:hover .btn {
  background: #ff0000;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Instagram Card */
.social-card[data-platform="instagram"] {
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.04) 0%, rgba(221, 42, 123, 0.04) 50%, rgba(129, 52, 175, 0.04) 100%);
  border-color: rgba(221, 42, 123, 0.15);
}
.social-card[data-platform="instagram"]:hover {
  border-color: rgba(221, 42, 123, 0.45);
  box-shadow: 
    0 15px 35px rgba(221, 42, 123, 0.25), 
    0 0 25px rgba(129, 52, 175, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-card[data-platform="instagram"] .social-icon-wrapper {
  color: #DD2A7B;
  border-color: rgba(221, 42, 123, 0.25);
  background: rgba(221, 42, 123, 0.05);
}
.social-card[data-platform="instagram"]:hover .social-icon-wrapper {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(221, 42, 123, 0.35);
}
.social-card[data-platform="instagram"]:hover .btn {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(221, 42, 123, 0.3);
}

/* X (Twitter) Card */
.social-card[data-platform="twitter"] {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 242, 254, 0.02) 100%);
  border-color: rgba(79, 172, 254, 0.15);
}
.social-card[data-platform="twitter"]:hover {
  border-color: rgba(79, 172, 254, 0.4);
  box-shadow: 
    0 15px 35px rgba(79, 172, 254, 0.25), 
    0 0 25px rgba(0, 242, 254, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-card[data-platform="twitter"] .social-icon-wrapper {
  color: #4facfe;
  border-color: rgba(79, 172, 254, 0.25);
  background: rgba(79, 172, 254, 0.05);
}
.social-card[data-platform="twitter"]:hover .social-icon-wrapper {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(79, 172, 254, 0.35);
}
.social-card[data-platform="twitter"]:hover .btn {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(79, 172, 254, 0.3);
}

/* LinkedIn Card */
.social-card[data-platform="linkedin"] {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.03) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(10, 102, 194, 0.01) 100%);
  border-color: rgba(10, 102, 194, 0.15);
}
.social-card[data-platform="linkedin"]:hover {
  border-color: rgba(10, 102, 194, 0.4);
  box-shadow: 
    0 15px 35px rgba(10, 102, 194, 0.25), 
    0 0 25px rgba(10, 102, 194, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-card[data-platform="linkedin"] .social-icon-wrapper {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.25);
  background: rgba(10, 102, 194, 0.05);
}
.social-card[data-platform="linkedin"]:hover .social-icon-wrapper {
  background: #0A66C2;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.35);
}
.social-card[data-platform="linkedin"]:hover .btn {
  background: #0A66C2;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.3);
}

/* Email Card */
.social-card[data-platform="email"] {
  background: linear-gradient(135deg, rgba(238, 205, 163, 0.04) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(239, 98, 159, 0.04) 100%);
  border-color: rgba(238, 205, 163, 0.15);
}
.social-card[data-platform="email"]:hover {
  border-color: rgba(239, 98, 159, 0.4);
  box-shadow: 
    0 15px 35px rgba(239, 98, 159, 0.25), 
    0 0 25px rgba(238, 205, 163, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.social-card[data-platform="email"] .social-icon-wrapper {
  color: var(--accent-pink);
  border-color: rgba(238, 205, 163, 0.25);
  background: rgba(238, 205, 163, 0.05);
}
.social-card[data-platform="email"]:hover .social-icon-wrapper {
  background: var(--accent-gradient);
  color: #050505;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(239, 98, 159, 0.35);
}
.social-card[data-platform="email"]:hover .btn {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #050505;
  box-shadow: 0 0 15px rgba(239, 98, 159, 0.3);
}

/* Projects Section */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-medium);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 98, 159, 0.3);
  box-shadow: 
    0 20px 45px rgba(239, 98, 159, 0.15), 
    0 0 30px rgba(238, 205, 163, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-img-link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.project-card:hover .project-card-img {
  transform: scale(1.04);
}

.project-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-category {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.project-title-link {
  text-decoration: none;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 14px;
}

.project-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: var(--font-title);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.project-title-link:hover .project-card-title {
  color: var(--accent-pink);
}

.external-link-icon {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card:hover .external-link-icon {
  opacity: 0.9;
  transform: translate(2px, -2px);
}

.project-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  flex-grow: 1;
  line-height: 1.6;
}

.project-cta-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 5, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 2;
}

.gallery-overlay-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform var(--transition-medium) 0.05s;
}

.gallery-overlay-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transform: translateY(10px);
  transition: transform var(--transition-medium) 0.1s;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-title,
.gallery-item:hover .gallery-overlay-caption {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.show {
  display: flex;
  opacity: 1;
}

.lightbox-content-container {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 20px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-secondary);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--text-primary);
}

/* Achievements Section */
.achievements-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.achievement-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.achievement-date {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-pink);
  min-width: 120px;
  padding-top: 4px;
}

.achievement-details {
  flex-grow: 1;
}

.achievement-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.achievement-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Testimonials Section (Feedback Slider) */
.feedback-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 60px;
}

.feedback-slider-track-wrapper {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.feedback-slider-track-wrapper:active {
  cursor: grabbing;
}

.feedback-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.feedback-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .feedback-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .feedback-slide {
    flex: 0 0 33.333%;
  }
}

.feedback-card {
  display: flex;
  flex-direction: column;
  height: 380px;
  border-radius: 28px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease;
  overflow: hidden;
}

.feedback-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 98, 159, 0.35);
  box-shadow: 
    0 20px 45px rgba(239, 98, 159, 0.15), 
    0 0 25px rgba(238, 205, 163, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feedback-img-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.feedback-card:hover .feedback-img {
  transform: scale(1.03);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: linear-gradient(135deg, #eecda3 0%, #ef629f 100%);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(239, 98, 159, 0.5);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-pink);
  font-size: 1.1rem;
}

.contact-detail-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(239, 98, 159, 0.15);
}

/* Footer styling */
.footer-bottom {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 40px 0 24px 0;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.designed-by {
  font-family: var(--font-title);
  font-weight: 600;
}

/* Floating Actions */
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-yt {
  background: #ff0000;
  border-color: #ff0000;
}
.float-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-pink);
  padding: 16px 24px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes toastIn {
  to { transform: translateX(0); }
}

.toast-success {
  border-left-color: #10b981;
}

.toast-success i {
  color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-error i {
  color: #ef4444;
}

.toast-info {
  border-left-color: #3b82f6;
}

.toast-info i {
  color: #3b82f6;
}

/* Scroll Animations */
.scroll-anim {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}

.fade-up {
  transform: translateY(40px);
}

.scroll-anim.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Mobile responsiveness Rules */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 1;
  }
  
  .hero-title {
    font-size: 4rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-top: 1px solid var(--glass-border);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .header-actions .btn-nav {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .profile-image-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .profile-image-container {
    width: 250px;
    height: 250px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Stat Sublabel */
.stat-sublabel {
  display: block;
  font-size: 0.72rem;
  opacity: 0.65;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 4px;
}


/* ==========================================================================
   2026 YOUTUBE STUDIO ANALYTICS DASHBOARD SYSTEM (2026 SAAS STYLE)
   ========================================================================== */

.stats-section {
  padding: 80px 0;
  position: relative;
}

.studio-dashboard-container {
  width: 92% !important;
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 26px;
  background: #09090B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(239, 98, 159, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.studio-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.studio-ambient-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(239, 98, 159, 0.14) 0%, rgba(168, 85, 247, 0.1) 40%, rgba(59, 130, 246, 0.05) 70%, transparent 100%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Studio Header */
.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.studio-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.studio-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.yt-logo-glow-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.35);
}

.studio-yt-icon {
  font-size: 1.8rem;
  color: #FF0000;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
}

.studio-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  font-family: var(--font-title);
  color: var(--text-primary);
}

.studio-subtitle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.studio-subtitle-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.badge-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 98, 159, 0.18);
  border: 1px solid rgba(239, 98, 159, 0.4);
  color: #ef629f;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef629f;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef629f;
  animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px #ef629f; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.studio-header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.green-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  display: inline-block;
}

.spin-icon {
  animation: spinSlow 8s linear infinite;
  margin-left: 4px;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

.update-time-pill {
  color: #34d399 !important;
  border-color: rgba(52, 211, 153, 0.3) !important;
  background: rgba(52, 211, 153, 0.08) !important;
}

.studio-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.studio-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(239, 98, 159, 0.3);
}

.verified-pill {
  color: var(--text-primary);
  border-color: rgba(239, 98, 159, 0.35);
  background: rgba(239, 98, 159, 0.08);
}

/* Metric Cards Grid */
.studio-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.studio-stat-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.card-pink-glow:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 98, 159, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(239, 98, 159, 0.22);
}

.card-purple-glow:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(168, 85, 247, 0.22);
}

.card-blue-glow:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(6, 182, 212, 0.22);
}

.card-ig-glow:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(225, 48, 108, 0.22);
}

.stat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.pink-orange-grad { background: linear-gradient(135deg, #ef629f, #ff7e5f); }
.purple-blue-grad { background: linear-gradient(135deg, #a855f7, #3b82f6); }
.blue-cyan-grad { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.ig-gradient-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.mini-sparkline {
  opacity: 0.9;
}

.stat-card-body {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 600;
}

.text-ig-icon {
  color: #e1306c;
  margin-left: 3px;
}

.stat-card-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

.stat-trend {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stat-trend.up {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
}

/* Studio Main Grid */
.studio-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.studio-chart-card, .studio-realtime-card {
  border-radius: 22px;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 26px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.studio-chart-card:hover, .studio-realtime-card:hover {
  border-color: rgba(239, 98, 159, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 98, 159, 0.1);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.chart-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.chart-tabs {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(239, 98, 159, 0.3), rgba(168, 85, 247, 0.3));
  border: 1px solid rgba(239, 98, 159, 0.4);
  box-shadow: 0 4px 12px rgba(239, 98, 159, 0.2);
}

.chart-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.chart-container {
  position: relative;
  width: 100%;
  margin: 12px 0;
}

.studio-chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.animated-chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.5s ease-out forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-dot.glow-dot {
  filter: drop-shadow(0 0 8px #ef629f);
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.today-marker {
  color: #ef629f;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.today-marker i {
  font-size: 0.5rem;
}

/* Realtime Studio Panel */
.studio-realtime-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.realtime-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.realtime-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.recording-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff0000;
  animation: pulseRed 1.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulseRed {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 18px #ff0000; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.realtime-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.realtime-subs-badge {
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ff4d4d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.realtime-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.realtime-big-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1;
}

.realtime-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

.realtime-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}

.realtime-bars .bar {
  width: 4px;
  background: linear-gradient(180deg, #ef629f 0%, #eecda3 100%);
  border-radius: 4px;
  animation: equalizer 1.4s infinite ease-in-out alternate;
}

.bar-1 { height: 40%; animation-delay: 0.1s; }
.bar-2 { height: 80%; animation-delay: 0.3s; }
.bar-3 { height: 100%; animation-delay: 0.2s; }
.bar-4 { height: 60%; animation-delay: 0.5s; }
.bar-5 { height: 90%; animation-delay: 0.4s; }
.bar-6 { height: 50%; animation-delay: 0.6s; }
.bar-7 { height: 75%; animation-delay: 0.2s; }

@keyframes equalizer {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.realtime-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* Top Short & Mini List Items */
.top-video-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-fire {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ef629f;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-live-yt {
  font-size: 0.72rem;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.25);
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-yt {
  animation: pulseGlow 1.5s infinite;
}

.top-video-card-highlight {
  border-color: rgba(239, 98, 159, 0.25) !important;
  background: rgba(239, 98, 159, 0.05) !important;
}

.top-video-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.top-video-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(239, 98, 159, 0.45) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(239, 98, 159, 0.2) !important;
}

.top-video-thumb-wrapper {
  position: relative;
  width: 90px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 5;
  color: #000;
  background: #ffcc00;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.top-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.top-video-card:hover .top-video-thumb {
  transform: scale(1.08);
}

.play-overlay-mini {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.top-video-card:hover .play-overlay-mini {
  background: rgba(239, 98, 159, 0.45);
}

.video-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex-grow: 1;
}

.video-title-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-meta-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.views-pill {
  color: #ef629f;
  background: rgba(239, 98, 159, 0.12);
}

.date-pill {
  color: var(--text-muted);
}

.likes-pill {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
}

.mini-top-videos-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.mini-video-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mini-video-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(239, 98, 159, 0.3);
  transform: translateX(4px);
}

.mini-video-thumb-img {
  width: 44px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-video-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.rank-num {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mini-video-title {
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

.mini-video-views {
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 1px;
}

.btn-view-analytics-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(239, 98, 159, 0.08);
  border: 1px solid rgba(239, 98, 159, 0.25);
  color: #ef629f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-analytics-link:hover {
  background: rgba(239, 98, 159, 0.18);
  border-color: rgba(239, 98, 159, 0.45);
  box-shadow: 0 6px 20px rgba(239, 98, 159, 0.2);
}

.btn-view-analytics-link:hover .icon-arrow-slide {
  transform: translateX(4px);
}

.icon-arrow-slide {
  transition: transform 0.3s ease;
}

/* Studio Insights Bottom Grid (5 Columns) */
.studio-insights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.insight-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 98, 159, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(239, 98, 159, 0.12);
}

.insight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.grad-circle-1 { background: linear-gradient(135deg, rgba(239, 98, 159, 0.2), rgba(255, 126, 95, 0.2)); color: #ef629f !important; }
.grad-circle-2 { background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2)); color: #a855f7 !important; }
.grad-circle-3 { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2)); color: #3b82f6 !important; }
.grad-circle-4 { background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.2)); color: #34d399 !important; }
.grad-circle-5 { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.2)); color: #f59e0b !important; }

.insight-content {
  flex-grow: 1;
  min-width: 0;
}

.insight-content h4 {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.insight-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 4px 0 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.insight-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.insight-tag.success { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.insight-tag.info { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.insight-tag.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.progress-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 10px;
}

.fill-pink { background: linear-gradient(90deg, #ef629f, #ff7e5f); }
.fill-purple { background: linear-gradient(90deg, #a855f7, #3b82f6); }
.fill-blue { background: linear-gradient(90deg, #3b82f6, #06b6d4); }
.fill-green { background: linear-gradient(90deg, #34d399, #10b981); }
.fill-multi { background: linear-gradient(90deg, #ef629f 0%, #a855f7 50%, #3b82f6 100%); }

/* Responsive Media Queries for Dashboard */
@media (max-width: 1200px) {
  .studio-insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .studio-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-main-grid {
    grid-template-columns: 1fr;
  }
  .studio-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .studio-dashboard-container {
    width: 96% !important;
    padding: 20px;
  }
  .studio-metrics-grid, .studio-insights-grid {
    grid-template-columns: 1fr;
  }
  .studio-title {
    font-size: 1.6rem;
  }
}

/* Community Responsive Breakpoints */
@media (max-width: 1024px) {
  .studio-metrics-grid, .studio-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-main-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-showcase-wrapper {
    min-height: auto;
    flex-direction: column;
  }
  .floating-cards-container {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    width: 100%;
    pointer-events: auto;
  }
  .floating-comment-card {
    position: relative;
    width: 100%;
    inset: auto !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .floating-cards-container {
    grid-template-columns: 1fr;
  }
  .community-badges-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   2026 COMMUNITY & FLOATING TESTIMONIAL SHOWCASE SYSTEM
   ========================================================================== */

.community-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(239, 98, 159, 0.06) 0%, rgba(10, 10, 10, 0) 70%);
}

.community-bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 98, 159, 0.12) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.community-badges-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.community-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Testimonial Showcase Wrapper */
.testimonial-showcase-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 40px auto;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Featured Hero Card */
.testimonial-hero-card {
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 98, 159, 0.15);
  z-index: 10;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-hero-card:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(239, 98, 159, 0.25);
  border-color: rgba(239, 98, 159, 0.4);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.hero-card-badge {
  font-size: 0.75rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-card-media-container {
  position: relative;
  padding: 12px;
  background: #0d0d0d;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.fallback-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card-media-link:hover .fallback-thumb-img {
  transform: scale(1.05);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.hero-card-media-link:hover .play-btn-overlay {
  background: rgba(239, 98, 159, 0.25);
}

.play-icon-glow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(239, 98, 159, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(239, 98, 159, 0.6);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
  padding-left: 4px;
}

.hero-card-media-link:hover .play-icon-glow {
  transform: scale(1.15);
  background: #ef629f;
  box-shadow: 0 0 45px rgba(239, 98, 159, 0.8);
}

.watch-video-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.image-overlay-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(239, 98, 159, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.hero-card-footer {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-quote-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef629f, #eecda3);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.font-purple { background: linear-gradient(135deg, #a855f7, #ec4899); color: #fff; }
.font-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); color: #fff; }
.font-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); color: #fff; }
.font-gold { background: linear-gradient(135deg, #f59e0b, #eab308); color: #000; }

.user-handle {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: block;
}

.comment-time {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.quote-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 4px 0;
  line-height: 1.4;
}

.creator-reply-bubble {
  background: rgba(239, 98, 159, 0.08);
  border: 1px solid rgba(239, 98, 159, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 6px;
}

.reply-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef629f;
  display: block;
  margin-bottom: 4px;
}

.reply-text {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

/* Floating Cards Layout */
.floating-cards-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-comment-card {
  position: absolute;
  width: 260px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 22, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(239, 98, 159, 0.1);
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 15;
}

.floating-comment-card:hover {
  transform: scale(1.08) translateY(-8px) rotate(0deg) !important;
  z-index: 30;
  border-color: rgba(239, 98, 159, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 98, 159, 0.25);
}

/* Positioning & Rotation Angles */
.card-tl {
  top: -20px;
  left: -40px;
  transform: rotate(-4deg);
}

.card-tr {
  top: 10px;
  right: -50px;
  transform: rotate(3deg);
}

.card-bl {
  bottom: 0px;
  left: -60px;
  transform: rotate(4deg);
}

.card-br {
  bottom: -30px;
  right: -40px;
  transform: rotate(-3deg);
}

.comment-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.comment-user-meta {
  flex-grow: 1;
}

.comment-platform-icon {
  color: #ff0000;
  font-size: 1rem;
}

.comment-body {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.comment-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.likes-badge, .loved-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.heart-icon { font-size: 0.8rem; }

/* Floating Animations */
.float-anim-1 { animation: floatY 6s ease-in-out infinite alternate; }
.float-anim-2 { animation: floatY 7s ease-in-out infinite alternate 1s; }
.float-anim-3 { animation: floatY 5.5s ease-in-out infinite alternate 0.5s; }
.float-anim-4 { animation: floatY 6.5s ease-in-out infinite alternate 1.5s; }

@keyframes floatY {
  0% { transform: translateY(0px) rotate(var(--rot, -3deg)); }
  100% { transform: translateY(-12px) rotate(var(--rot, -3deg)); }
}

/* Infinite Marquee Section */
.community-marquee-wrapper {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.community-marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-card {
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.marquee-user {
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 6px;
}




