/* ===========================
   BEBE EN BASAGE FAN PAGE
   CSS Design System
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Bangers&family=Fredoka+One&display=swap');

/* --- CSS Variables --- */
:root {
  --coral: #FF5A7E;
  --coral-dark: #e84a6d;
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --navy-light: #0F3460;
  --purple: #2D2D44;
  --cyan: #00D4FF;
  --yellow: #FFD700;
  --lime: #A8FF3E;
  --white: #FFFFFF;
  --off-white: #F5F0FF;
  --text-muted: #A0A0C0;
  --card-bg: rgba(45, 45, 68, 0.85);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-glow-coral: 0 0 30px rgba(255, 90, 126, 0.35);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 3px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 40px;
  background: rgba(26, 26, 46, 0.98);
}

.nav-logo {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--coral), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--coral), #FF8FA3);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-glow-coral);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 90, 126, 0.5) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner-1920x1080.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(45, 45, 68, 0.6) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

/* Animated orbs background */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--cyan), transparent);
  top: 200px;
  right: -50px;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--yellow), transparent);
  bottom: 100px;
  left: 30%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: heroSlideIn 0.9s ease forwards;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 126, 0.15);
  border: 1px solid rgba(255, 90, 126, 0.4);
  color: var(--coral);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.hero-title .line-1 {
  display: block;
  color: var(--white);
}

.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-3 {
  display: block;
  color: var(--cyan);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #FF8FA3);
  color: var(--white);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 90, 126, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  animation: heroImgIn 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes heroImgIn {
  from { opacity: 0; transform: translateX(50px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-glow-coral);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--coral), var(--cyan), var(--yellow));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.hero-img-frame:hover img {
  transform: scale(1.04);
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-img-badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-img-badge-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-img-badge-text span {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
  margin-top: 4px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===========================
   SECTION SHARED STYLES
   =========================== */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 0;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 12px;
  padding: 4px 12px;
  border-left: 3px solid var(--coral);
}

.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral), var(--cyan), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,46,0.7) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}

.about-img-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-glow-coral);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-content h2 span {
  color: var(--coral);
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid;
}

.tag-coral {
  background: rgba(255, 90, 126, 0.12);
  border-color: rgba(255, 90, 126, 0.4);
  color: var(--coral);
}

.tag-cyan {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--cyan);
}

.tag-yellow {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  color: var(--yellow);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(255, 90, 126, 0.4);
  background: rgba(255, 90, 126, 0.06);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), #FF8FA3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
  position: relative;
  background: var(--navy-mid);
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 90, 126, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--coral), var(--cyan), var(--yellow), var(--coral));
  background-size: 300% 300%;
  border-radius: calc(var(--radius-md) + 1px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

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

.gallery-overlay-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-overlay-sub {
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-view-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 90, 126, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-view-btn {
  opacity: 1;
  transform: scale(1);
}

/* Gallery layout */
.gallery-item-large {
  grid-column: span 2;
  height: 380px;
}

.gallery-item-tall {
  grid-row: span 2;
  height: 100%;
  min-height: 380px;
}

.gallery-item-normal {
  height: 280px;
}

/* ===========================
   QUOTES SECTION
   =========================== */
.quotes-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}

.quotes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 126, 0.05) 50%, transparent);
  pointer-events: none;
}

.quotes-ticker {
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
}

.quotes-ticker::before,
.quotes-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.quotes-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}

.quotes-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}

.quotes-ticker-inner {
  display: flex;
  gap: 16px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.quotes-ticker:hover .quotes-ticker-inner {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid;
}

.ticker-tag-coral {
  background: rgba(255, 90, 126, 0.1);
  border-color: rgba(255, 90, 126, 0.35);
  color: var(--coral);
}

.ticker-tag-cyan {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.ticker-tag-yellow {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--yellow);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.quote-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
}

.quote-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 126, 0.35);
  box-shadow: var(--shadow-glow-coral);
}

.quote-mark {
  font-family: 'Bangers', cursive;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--coral);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
}

.quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 600;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.quote-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-author span {
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 700;
}

.quote-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255, 90, 126, 0.15);
  color: var(--coral);
  border: 1px solid rgba(255, 90, 126, 0.3);
}

/* ===========================
   COMMUNITY / FAN HIGHLIGHTS
   =========================== */
.community-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.community-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--coral), transparent);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.fan-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.fan-card-featured::before {
  background: linear-gradient(90deg, var(--coral), var(--yellow));
}

.fan-card-regular::before {
  background: linear-gradient(90deg, var(--cyan), var(--coral));
}

.fan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 126, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fan-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 14px;
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.avatar-gradient-1 { background: linear-gradient(135deg, #FF5A7E, #FF8FA3); }
.avatar-gradient-2 { background: linear-gradient(135deg, #00D4FF, #0099CC); }
.avatar-gradient-3 { background: linear-gradient(135deg, #FFD700, #FF8C00); }
.avatar-gradient-4 { background: linear-gradient(135deg, #A8FF3E, #00CC55); }

.fan-name {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.fan-role {
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.fan-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.fan-stats-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

.fan-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
}

.fan-stat svg {
  color: var(--coral);
}

.community-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 90, 126, 0.08), rgba(0, 212, 255, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.community-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--coral), var(--cyan), var(--yellow));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.2;
}

.community-cta h3 {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.community-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ===========================
   SOCIAL LINKS SECTION
   =========================== */
.social-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-card {
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover {
  transform: translateY(-8px);
}

/* Discord */
.social-discord {
  background: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.3);
}

.social-discord::before {
  background: rgba(88, 101, 242, 0.12);
}

.social-discord:hover {
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.6);
}

.social-discord .social-icon-wrap {
  background: linear-gradient(135deg, #5865F2, #7289DA);
}

/* Twitter/X */
.social-twitter {
  background: rgba(29, 161, 242, 0.08);
  border-color: rgba(29, 161, 242, 0.25);
}

.social-twitter::before {
  background: rgba(29, 161, 242, 0.1);
}

.social-twitter:hover {
  box-shadow: 0 20px 50px rgba(29, 161, 242, 0.25);
  border-color: rgba(29, 161, 242, 0.5);
}

.social-twitter .social-icon-wrap {
  background: linear-gradient(135deg, #1DA1F2, #0D8EDB);
}

/* YouTube */
.social-youtube {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.2);
}

.social-youtube::before {
  background: rgba(255, 0, 0, 0.1);
}

.social-youtube:hover {
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25);
  border-color: rgba(255, 0, 0, 0.45);
}

.social-youtube .social-icon-wrap {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* TikTok */
.social-tiktok {
  background: rgba(105, 201, 208, 0.08);
  border-color: rgba(105, 201, 208, 0.25);
}

.social-tiktok::before {
  background: rgba(105, 201, 208, 0.1);
}

.social-tiktok:hover {
  box-shadow: 0 20px 50px rgba(255, 0, 80, 0.25);
  border-color: rgba(105, 201, 208, 0.5);
}

.social-tiktok .social-icon-wrap {
  background: linear-gradient(135deg, #010101, #69C9D0);
}

.social-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.social-card:hover .social-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.social-icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.social-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.social-handle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.social-followers {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.social-followers-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 700;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--glass-border);
  padding: 60px 40px 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), var(--cyan), transparent);
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--coral), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social-mini {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background: rgba(255, 90, 126, 0.15);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  transition: var(--transition);
}

.footer-social-icon:hover svg {
  fill: var(--coral);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-bottom p span {
  color: var(--coral);
}

.footer-credits {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 90, 126, 0.85);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--coral);
  transform: scale(1.1) rotate(90deg);
}

/* ===========================
   SCROLL ANIMATIONS (AOS fallback)
   =========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }
[data-animate-delay="600"] { transition-delay: 0.6s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-image-wrap {
    max-width: 540px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
    height: 280px;
  }

  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .section {
    padding: 70px 20px;
  }

  .quotes-section {
    padding: 70px 20px;
  }

  .hero-content {
    padding: 100px 20px 50px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-tall {
    grid-column: span 1;
    height: 260px;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}
