/* ========================================
   FRUITCODE V3 - Enhanced Professional Styles
   Motion-rich, Interactive, Modern Web Design
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=VT323&display=swap');

/* CSS Variables - Enhanced */
:root {
  /* FRUITCODE Brand Colors */
  --fc-pink: #FF69B4;
  --fc-pink-soft: #FFB6D9;
  --fc-pink-dark: #FF1493;
  --fc-cyan: #00CED1;
  --fc-cyan-soft: #7FDBDA;
  --fc-magenta: #FF00FF;
  --fc-purple: #9B59B6;
  --fc-yellow: #FFE135;
  --fc-lime: #32CD32;
  --fc-red: #FF6B6B;
  --fc-blue: #6B5B95;
  --fc-gold: #FFD700;
  
  /* Member Colors */
  --ichira-pink: #FF69B4;
  --lyra-yellow: #FFE135;
  --lyra-lime: #32CD32;
  --meira-red: #FF6B6B;
  --meira-green: #2ECC71;
  --aoira-blue: #6B5B95;
  --fujira-purple: #9B59B6;
  
  /* Background Colors */
  --bg-pink: #FFE6F4;
  --bg-blue: #E9F6FF;
  --bg-dark: #2A0C38;
  
  /* Text Colors */
  --text-primary: #2A0C38;
  --text-secondary: #6E4B7A;
  --text-light: #FFFFFF;
  
  /* Gradients */
  --gradient-pink-cyan: linear-gradient(135deg, #FF69B4 0%, #00CED1 100%);
  --gradient-soft: linear-gradient(135deg, #FFA9D5 0%, #AADDFF 100%);
  --gradient-rainbow: linear-gradient(90deg, #FF69B4, #FFE135, #32CD32, #00CED1, #9B59B6);
  
  /* Shadows - Enhanced */
  --shadow-card: 0 18px 40px rgba(42, 12, 56, 0.10);
  --shadow-card-hover: 0 30px 60px rgba(42, 12, 56, 0.20);
  --shadow-glow-pink: 0 0 30px rgba(255, 105, 180, 0.6);
  --shadow-glow-cyan: 0 0 30px rgba(0, 206, 209, 0.6);
  --shadow-neon: 0 0 40px rgba(255, 105, 180, 0.4), 0 0 80px rgba(0, 206, 209, 0.2);
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  /* Transitions - Enhanced */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Easing Functions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Reset & Base - Enhanced */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-pink);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ========================================
   CUSTOM CURSOR - Enhanced
   ======================================== */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.2s ease, height 0.2s ease;
  background-image: url('../cursor/starcursor.png');
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  animation: cursor-pulse 0.8s ease infinite;
}

/* Member-Specific Cursors */
.custom-cursor.ichira-cursor {
  background-image: url('../cursor/strawberry-cursor.png');
}

.custom-cursor.lyra-cursor {
  background-image: url('../cursor/lemon-cursor.png');
}

.custom-cursor.meira-cursor {
  background-image: url('../cursor/watermelon-cursor.png');
}

.custom-cursor.aoira-cursor {
  background-image: url('../cursor/blueberry-cursor.png');
}

.custom-cursor.fujira-cursor {
  background-image: url('../cursor/grape-cursor.png');
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

@keyframes cursor-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Cursor Trail - Enhanced */
.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-trail.active {
  opacity: 0.6;
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
  body { cursor: auto; }
  .custom-cursor, .cursor-trail { display: none !important; }
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-pink);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-pink-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loading-bounce 1s ease infinite;
}

@keyframes loading-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 105, 180, 0.2);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0%;
  background: var(--gradient-pink-cyan);
  border-radius: 2px;
  animation: loading-progress 2s ease forwards;
}

@keyframes loading-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========================================
   GRAIN OVERLAY - Enhanced
   ======================================== */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.4;
  animation: particle-float 15s ease-in-out infinite;
}

.particle:nth-child(3n) { background: var(--fc-pink); }
.particle:nth-child(3n+1) { background: var(--fc-cyan); }
.particle:nth-child(3n+2) { background: var(--fc-yellow); }

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(100vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { 
    transform: translateY(-100vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* ========================================
   TYPOGRAPHY - Enhanced
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pixel-font {
  font-family: 'VT323', monospace;
}

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

.text-glow {
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(0, 206, 209, 0.3);
}

/* ========================================
   BUTTONS - Enhanced with Magnetic Effect
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--fc-pink);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
  background: var(--fc-pink-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 105, 180, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 3px solid var(--fc-pink);
}

.btn-secondary:hover {
  background: var(--bg-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-magnetic {
  transition: transform 0.2s ease-out;
}

/* Member Color Buttons */
.btn-ichira { background: var(--ichira-pink); color: white; }
.btn-ichira:hover { box-shadow: 0 0 30px var(--ichira-pink); }

.btn-lyra { background: var(--lyra-yellow); color: var(--text-primary); }
.btn-lyra:hover { box-shadow: 0 0 30px var(--lyra-yellow); }

.btn-meira { background: linear-gradient(135deg, var(--meira-red) 0%, var(--meira-green) 100%); color: white; }
.btn-meira:hover { box-shadow: 0 0 30px var(--meira-red); }

.btn-aoira { background: var(--aoira-blue); color: white; }
.btn-aoira:hover { box-shadow: 0 0 30px var(--aoira-blue); }

.btn-fujira { background: var(--fujira-purple); color: white; }
.btn-fujira:hover { box-shadow: 0 0 30px var(--fujira-purple); }

/* ========================================
   CARDS - Enhanced
   ======================================== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-3d:hover {
  transform: rotateY(5deg) rotateX(5deg) translateY(-8px);
}

/* Member Card Glow Effects */
.card-ichira:hover { box-shadow: var(--shadow-glow-pink); border-color: var(--ichira-pink); }
.card-ichira:hover::after { border-color: var(--ichira-pink); }

.card-lyra:hover { box-shadow: 0 0 30px var(--lyra-yellow); border-color: var(--lyra-yellow); }
.card-lyra:hover::after { border-color: var(--lyra-yellow); }

.card-meira:hover { box-shadow: 0 0 30px var(--meira-red); border-color: var(--meira-red); }
.card-meira:hover::after { border-color: var(--meira-red); }

.card-aoira:hover { box-shadow: 0 0 30px var(--aoira-blue); border-color: var(--aoira-blue); }
.card-aoira:hover::after { border-color: var(--aoira-blue); }

.card-fujira:hover { box-shadow: 0 0 30px var(--fujira-purple); border-color: var(--fujira-purple); }
.card-fujira:hover::after { border-color: var(--fujira-purple); }

/* ========================================
   WINDOW FRAME - Enhanced
   ======================================== */
.window-frame {
  border: 3px solid var(--fc-pink);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.window-frame:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.window-header {
  background: var(--gradient-pink-cyan);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-title {
  color: white;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.window-btn:hover { transform: scale(1.2); }
.window-btn:nth-child(1) { background: #FF5F57; }
.window-btn:nth-child(2) { background: #FFBD2E; }
.window-btn:nth-child(3) { background: #28CA42; }

/* ========================================
   NAVIGATION - Enhanced
   ======================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 230, 244, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--fc-pink);
  transition: all 0.4s var(--ease-out-expo);
}

.main-nav.scrolled {
  padding: 12px 32px;
  background: rgba(255, 230, 244, 0.95);
  box-shadow: 0 4px 30px rgba(255, 105, 180, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  width: 42px;
  height: 42px;
  transition: transform 0.5s var(--ease-in-out-back);
}

.nav-logo:hover img {
  transform: rotate(360deg);
}

/* Animated Ombre FRUITCODE Logo */
.nav-logo span {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(
    90deg,
    #FF69B4 0%,
    #FF6B6B 20%,
    #FFE135 40%,
    #9B59B6 60%,
    #6B5B95 80%,
    #FF69B4 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logo-ombre 4s linear infinite;
}

@keyframes logo-ombre {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-pink-cyan);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--fc-pink);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--fc-pink);
  box-shadow: var(--shadow-card-hover);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-pink);
  color: var(--fc-pink);
  padding-left: 28px;
}

.dropdown-menu a::after { display: none; }

/* Member Switcher */
.member-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.fruit-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: white;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease-in-out-back);
  text-decoration: none;
  position: relative;
}

.fruit-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.fruit-icon:hover {
  transform: scale(1.15) rotate(10deg);
}

.fruit-icon:hover::before {
  border-color: currentColor;
  animation: fruit-ring 1s ease infinite;
}

@keyframes fruit-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Music Toggle */
.music-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--fc-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.music-toggle:hover {
  background: var(--bg-pink);
  transform: scale(1.1);
}

.music-toggle.playing {
  background: var(--fc-pink);
  color: white;
  animation: music-pulse 2s ease infinite;
}

@keyframes music-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(255, 105, 180, 0); }
}

.music-toggle .tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.music-toggle:hover .tooltip {
  opacity: 1;
}

/* Equalizer Animation */
.equalizer-bar {
  width: 3px;
  background: var(--fc-pink);
  border-radius: 2px;
  animation: equalizer 0.5s ease infinite;
}

.equalizer-bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes equalizer {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

/* ========================================
   HERO SECTION - Enhanced
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  width: 90vw;
  height: 90vh;
  border-radius: 50%;
  background: var(--gradient-soft);
  opacity: 0.4;
  filter: blur(80px);
  z-index: -1;
  animation: blob-morph 15s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { 
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) scale(1);
  }
  25% { 
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(30px, -30px) scale(1.05);
  }
  50% { 
    border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% { 
    border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
    transform: translate(20px, 10px) scale(1.02);
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  background: var(--gradient-pink-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: hero-title-reveal 1s var(--ease-out-expo) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes hero-title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 32px;
  animation: hero-tagline-reveal 1s var(--ease-out-expo) 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes hero-tagline-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 48px;
  animation: hero-desc-reveal 1s var(--ease-out-expo) 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes hero-desc-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  animation: hero-cta-reveal 1s var(--ease-out-expo) 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes hero-cta-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Fruits Decoration */
.floating-fruits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-fruit {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: fruit-float 8s ease-in-out infinite;
}

@keyframes fruit-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ========================================
   SECTION STYLES - Enhanced
   ======================================== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-pink-cyan);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ========================================
   MEMBERS SECTION - Enhanced
   ======================================== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.member-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.member-card:hover {
  transform: translateY(-12px) rotateY(5deg);
}

.member-card:hover img {
  transform: scale(1.1);
}

.member-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.member-card:hover .member-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.member-card-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.member-card-overlay span {
  font-size: 1.4rem;
}

.member-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.member-card:hover .member-card-glow {
  opacity: 1;
}

/* ========================================
   DISCOGRAPHY CAROUSEL - Enhanced
   ======================================== */
.discography-section {
  background: var(--bg-blue);
  overflow: hidden;
}

.discography-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-container {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--ease-out-expo);
}

.album-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 300px;
  position: relative;
}

.album-card a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out-expo);
}

.album-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.album-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card:hover .album-card-play {
  opacity: 1;
}

.album-card-play-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s var(--ease-out-expo);
}

.album-card:hover .album-card-play-icon {
  transform: scale(1);
}

.album-card h3 {
  font-size: 1.15rem;
  margin: 16px 0 8px;
  transition: color 0.3s ease;
}

.album-card:hover h3 {
  color: var(--fc-pink);
}

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

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--fc-pink);
  font-size: 1.3rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 10;
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background: var(--fc-pink);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow-pink);
}

.carousel-btn.prev { left: -28px; }
.carousel-btn.next { right: -28px; }

/* Singles Section */
.singles-carousel {
  margin-top: 64px;
}

.singles-carousel h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--fc-cyan);
}

.singles-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--fc-pink) var(--bg-pink);
}

.singles-container::-webkit-scrollbar {
  height: 8px;
}

.singles-container::-webkit-scrollbar-track {
  background: var(--bg-pink);
  border-radius: 4px;
}

.singles-container::-webkit-scrollbar-thumb {
  background: var(--fc-pink);
  border-radius: 4px;
}

.single-card {
  flex: 0 0 calc(20% - 20px);
  min-width: 180px;
  transition: all 0.4s var(--ease-out-expo);
}

.single-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.single-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.single-card:hover img {
  box-shadow: var(--shadow-glow-cyan);
}

.single-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.single-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========================================
   CREATOR SECTION - Enhanced
   ======================================== */
.creator-section {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-pink) 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.creator-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,105,180,0.1) 0%, transparent 50%);
  animation: creator-glow 10s ease-in-out infinite;
}

@keyframes creator-glow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.creator-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.creator-photo {
  max-width: 320px;
  margin: 0 auto 48px;
  position: relative;
}

.creator-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--gradient-pink-cyan);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
  animation: photo-glow 3s ease-in-out infinite;
}

@keyframes photo-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.creator-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.creator-note {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-primary);
  white-space: pre-line;
  background: rgba(255,255,255,0.8);
  padding: 40px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

/* ========================================
   FOOTER - Enhanced
   ======================================== */
.footer {
  background: var(--bg-pink);
  padding: 48px 24px;
  text-align: center;
  border-top: 2px solid var(--fc-pink);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gradient-pink-cyan);
  border-radius: 2px;
}

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

.footer-fruits {
  font-size: 1.5rem;
  margin-top: 16px;
  animation: footer-bounce 2s ease infinite;
}

@keyframes footer-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ========================================
   ANIMATIONS - Keyframes
   ======================================== */
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px currentColor; }
  50% { box-shadow: 0 0 25px currentColor; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ========================================
   RESPONSIVE - Enhanced
   ======================================== */
@media (max-width: 1024px) {
  .album-card {
    flex: 0 0 calc(50% - 14px);
  }
  
  .single-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* ========================================
   MOBILE MENU - Hamburger Dropdown
   ======================================== */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--fc-pink);
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 1002;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--fc-pink);
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.active svg {
  transform: rotate(90deg);
}

.mobile-menu-toggle:hover {
  background: var(--bg-pink);
  transform: scale(1.1);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: var(--radius-xl);
  border: 3px solid var(--fc-pink);
  box-shadow: var(--shadow-card-hover), 0 20px 60px rgba(0,0,0,0.2);
  padding: 16px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s var(--ease-out-expo);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.mobile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown li {
  border-bottom: 1px solid var(--bg-pink);
}

.mobile-dropdown li:last-child {
  border-bottom: none;
}

.mobile-dropdown a {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  border-radius: var(--radius-md);
}

.mobile-dropdown a:hover {
  background: var(--bg-pink);
  color: var(--fc-pink);
  padding-left: 28px;
}

.mobile-members-submenu {
  padding-left: 20px;
}

.mobile-members-submenu a {
  font-size: 0.95rem;
  padding: 10px 16px;
}

@media (max-width: 768px) {
  .main-nav {
    padding: 12px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-dropdown {
    display: block;
  }
  
  .member-switcher {
    display: none;
  }
  
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .album-card {
    flex: 0 0 100%;
    min-width: 280px;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .single-card {
    flex: 0 0 calc(50% - 12px);
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .creator-note {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
  
  .single-card {
    flex: 0 0 80%;
  }
}

/* ========================================
   SELECTION & SCROLLBAR
   ======================================== */
::selection {
  background: var(--fc-pink);
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-pink-cyan);
  border-radius: 6px;
  border: 2px solid var(--bg-pink);
}

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

/* ========================================
   GLITCH EFFECT
   ======================================== */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch-1 0.3s ease;
  color: var(--fc-cyan);
  opacity: 0.8;
}

.glitch:hover::after {
  animation: glitch-2 0.3s ease;
  color: var(--fc-pink);
  opacity: 0.8;
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); opacity: 0; }
  20% { transform: translate(-3px, 3px); opacity: 0.8; }
  40% { transform: translate(3px, -3px); opacity: 0.8; }
  60% { transform: translate(-3px, -3px); opacity: 0.8; }
  80% { transform: translate(3px, 3px); opacity: 0.8; }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); opacity: 0; }
  20% { transform: translate(3px, -3px); opacity: 0.8; }
  40% { transform: translate(-3px, 3px); opacity: 0.8; }
  60% { transform: translate(3px, 3px); opacity: 0.8; }
  80% { transform: translate(-3px, -3px); opacity: 0.8; }
}

/* ========================================
   HOVER LIFT EFFECT
   ======================================== */
.hover-lift {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(42, 12, 56, 0.15);
}

/* ========================================
   TEXT REVEAL ANIMATION
   ======================================== */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.text-reveal.active span {
  transform: translateY(0);
}

/* ========================================
   MEMBER PAGES - Enhanced Visual Effects
   ======================================== */

/* Member Page Body Themes */
body.ichira-page {
  background: linear-gradient(135deg, #FFE6F4 0%, #FFF0F7 50%, #FFE6F4 100%);
}

body.lyra-page {
  background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 50%, #FFFDE7 100%);
}

body.meira-page {
  background: linear-gradient(135deg, #FFEBEE 0%, #E8F5E9 50%, #FFEBEE 100%);
}

body.aoira-page {
  background: linear-gradient(135deg, #E8EAF6 0%, #E3F2FD 50%, #E8EAF6 100%);
}

body.fujira-page {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 50%, #F3E5F5 100%);
}

/* Member Hero Section */
.member-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient Glow Behind Member Image */
.member-image-container {
  position: relative;
  display: inline-block;
}

.member-image-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(40px);
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

.ichira-page .member-image-glow {
  background: radial-gradient(circle, rgba(255, 105, 180, 0.5) 0%, transparent 70%);
}

.lyra-page .member-image-glow {
  background: radial-gradient(circle, rgba(255, 225, 53, 0.5) 0%, transparent 70%);
}

.meira-page .member-image-glow {
  background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, rgba(46, 204, 113, 0.3) 50%, transparent 70%);
}

.aoira-page .member-image-glow {
  background: radial-gradient(circle, rgba(107, 91, 149, 0.5) 0%, transparent 70%);
}

.fujira-page .member-image-glow {
  background: radial-gradient(circle, rgba(155, 89, 182, 0.5) 0%, transparent 70%);
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* 3D Tilt Effect on Member Image */
.member-image {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s var(--ease-out-expo);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.member-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating Themed Elements */
.member-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.member-floater {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.25;
  animation: member-float 10s ease-in-out infinite;
}

@keyframes member-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(-30px) rotate(3deg); }
}

/* Pet Section */
.pet-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin: 24px 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.pet-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
  border: 2px solid transparent;
}

.pet-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--fc-pink);
  box-shadow: var(--shadow-card-hover);
}

.pet-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--fc-pink);
  transition: all 0.4s ease;
}

.pet-card:hover .pet-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

/* Featured Song Card */
.featured-song-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.featured-song-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-pink-cyan);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.featured-song-card:hover::before {
  opacity: 0.1;
}

.featured-song-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-pink);
}

.featured-song-content {
  position: relative;
  z-index: 1;
}

/* Creator Note Section */
.creator-note-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,230,244,0.8) 100%);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.creator-note-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,105,180,0.1) 0%, transparent 50%);
  animation: creator-glow-rotate 15s linear infinite;
}

@keyframes creator-glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Member Color Trail Effects */
body.ichira-page .cursor-trail { background: var(--ichira-pink); }
body.lyra-page .cursor-trail { background: var(--lyra-yellow); }
body.meira-page .cursor-trail { background: linear-gradient(90deg, var(--meira-red), var(--meira-green)); }
body.aoira-page .cursor-trail { background: var(--aoira-blue); }
body.fujira-page .cursor-trail { background: var(--fujira-purple); }

/* Member Page Navigation Accent */
body.ichira-page .main-nav { border-bottom-color: var(--ichira-pink); }
body.lyra-page .main-nav { border-bottom-color: var(--lyra-yellow); }
body.meira-page .main-nav { border-bottom-color: var(--meira-red); }
body.aoira-page .main-nav { border-bottom-color: var(--aoira-blue); }
body.fujira-page .main-nav { border-bottom-color: var(--fujira-purple); }

/* Member Stats Cards */
.member-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: currentColor;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}

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

/* ========================================
   NEW ADDITIONS - Hero Animation, Mobile Nav, Song Cards, Pets
   ======================================== */

/* Hero FRUITCODE Logo - Animated Ombre */
.hero-logo-text {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(
    90deg,
    #FF69B4 0%,
    #FF6B6B 15%,
    #FFE135 30%,
    #32CD32 45%,
    #00CED1 60%,
    #6B5B95 75%,
    #9B59B6 90%,
    #FF69B4 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: hero-logo-ombre 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(255, 105, 180, 0.3));
}

@keyframes hero-logo-ombre {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-logo-text {
    animation: none;
    background-position: 0% 50%;
  }
}

/* Mobile Hamburger Navigation */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: white;
  border: 2px solid var(--fc-pink);
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 1002;
}

.mobile-menu-toggle:hover {
  background: var(--bg-pink);
  transform: scale(1.05);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--fc-pink);
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.active svg {
  transform: rotate(90deg);
}

.mobile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--fc-pink);
  box-shadow: var(--shadow-card-hover);
  padding: 16px;
  min-width: 220px;
  z-index: 1001;
  transform-origin: top right;
  animation: mobile-dropdown-slide 0.3s var(--ease-out-expo);
}

@keyframes mobile-dropdown-slide {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown ul {
  list-style: none;
}

.mobile-dropdown li {
  margin-bottom: 4px;
}

.mobile-dropdown a {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-dropdown a:hover {
  background: var(--bg-pink);
  color: var(--fc-pink);
}

.mobile-dropdown a.active {
  background: var(--fc-pink);
  color: white;
}

/* Mobile Members Submenu */
.mobile-members-submenu {
  margin-left: 16px;
  border-left: 2px solid var(--bg-pink);
  padding-left: 12px;
  margin-top: 4px;
}

.mobile-members-submenu a {
  font-size: 0.9rem;
  padding: 10px 14px;
  min-height: 40px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Color-coded Song Cards */
.song-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.song-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--theme-color, var(--fc-pink));
  border-radius: 0 0 0 100%;
  opacity: 0.2;
}

.song-card .fruit-icon-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.8rem;
  z-index: 2;
}

/* Member-specific song card colors */
.song-card-ichira {
  border: 3px solid var(--ichira-pink);
  --theme-color: var(--ichira-pink);
}

.song-card-lyra {
  border: 3px solid var(--lyra-yellow);
  --theme-color: var(--lyra-yellow);
}

.song-card-meira {
  border: 3px solid var(--meira-red);
  --theme-color: var(--meira-red);
}

.song-card-aoira {
  border: 3px solid var(--aoira-blue);
  --theme-color: var(--aoira-blue);
}

.song-card-fujira {
  border: 3px solid var(--fujira-purple);
  --theme-color: var(--fujira-purple);
}

/* Enhanced Pet Card with bigger image */
.pet-card-large {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
}

.pet-card-large:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--fc-pink);
  box-shadow: var(--shadow-card-hover);
}

.pet-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--fc-pink);
  transition: all 0.4s ease;
}

.pet-card-large:hover .pet-avatar-large {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

/* Member Portrait Link */
.member-portrait-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.member-portrait-link::after {
  content: 'Click to watch my introduction! :)';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fc-pink);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.member-portrait-link:hover::after {
  opacity: 1;
  bottom: -40px;
}

/* Creator Note Text Box */
.creator-note-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,230,244,0.8) 100%);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.creator-note-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,105,180,0.1) 0%, transparent 50%);
  animation: creator-glow-rotate 15s linear infinite;
}

.creator-note-box p {
  position: relative;
  z-index: 1;
  line-height: 1.9;
}

/* Discord Emphasis Card */
.discord-emphasis-card {
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: white;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  display: block;
  text-align: center;
}

.discord-emphasis-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 50px rgba(88, 101, 242, 0.5);
}

.discord-emphasis-card .icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.discord-emphasis-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
}

.discord-emphasis-card .link-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  display: block;
}

.discord-og-note {
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.7;
}

/* Projects Page Styles */
.projects-page {
  min-height: 100vh;
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-blue) 100%);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.project-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-out-expo);
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--fc-pink);
}

.project-card h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.project-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-note {
  font-size: 0.85rem;
  color: var(--fc-pink);
  font-style: italic;
  margin-bottom: 16px;
}

/* Disabled Button */
.btn-disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Lyra Color Fix - Green text only */
.lyra-green-text h1,
.lyra-green-text .member-color,
.lyra-green-text .member-bio p {
  color: #2E7D32;
}

.lyra-green-text .section-title {
  color: #2E7D32;
}
