/* ═══════════════════════════════════════════════════════════════════════════
   THE BOSS — White Bay Resort Reality Show
   Premium Cinematic Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts: Cinzel & Outfit ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Outfit:wght@100..900&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  /* Color Palette — Cinematic Nightlife */
  --bg-primary: #0B132B;
  --bg-secondary: #1C2541;
  --bg-tertiary: #0F1B35;
  --accent-cyan: #5BC0BE;
  --accent-gold: #F4D35E;
  --accent-gold-dark: #D4A843;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8; /* Lighter secondary text for better contrast */
  --text-muted: #6FFFE9;
  --danger: #ff6b6b;
  --success: #51cf66;

  /* Glows */
  --glow-cyan: 0 0 20px rgba(91, 192, 190, 0.3), 0 0 60px rgba(91, 192, 190, 0.1);
  --glow-gold: 0 0 20px rgba(244, 211, 94, 0.3), 0 0 60px rgba(244, 211, 94, 0.1);
  --glow-cyan-strong: 0 0 30px rgba(91, 192, 190, 0.5), 0 0 80px rgba(91, 192, 190, 0.2);

  /* Typography */
  --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Cinzel', Georgia, serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 80px);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-primary);
}

html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-gold));
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .navbar-brand span, .hero-title, .section-title, .timeline-title, .contestant-name, .reward-title, .modal-title, .footer-heading {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--accent-gold); }

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

/* ─── Loading Screen ────────────────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loading-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  animation: logoPulse 2s ease-in-out infinite;
}

.loading-bar-container {
  width: 200px;
  height: 3px;
  background: rgba(91, 192, 190, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.loading-text {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(91, 192, 190, 0.1);
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(91, 192, 190, 0.3);
  transition: all var(--transition-fast);
}
.navbar.scrolled .navbar-brand img { width: 36px; height: 36px; }

.navbar-brand span {
  font-weight: 800;
  font-size: 20px;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

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

.nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
  transition: width var(--transition-smooth);
  border-radius: var(--radius-full);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-gold) !important;
  border: 2px solid var(--accent-gold);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: none;
}
.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.55); /* Elegant translucent overlay to see the video clearly */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 64px 48px;
  background: rgba(11, 19, 43, 0.38); /* Breathtaking crystal-glass transparency */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(91, 192, 190, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--glow-cyan), 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(91, 192, 190, 0.1);
  border: 1px solid rgba(91, 192, 190, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(91, 192, 190, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(91, 192, 190, 0); }
}

.hero-title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(244, 211, 94, 0.5);
  color: var(--bg-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(91, 192, 190, 0.4);
  box-shadow: var(--glow-cyan);
}
.btn-secondary:hover {
  background: rgba(91, 192, 190, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  color: var(--accent-cyan);
}

.btn-vote {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: var(--glow-cyan);
}
.btn-vote:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan-strong);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* ─── Section Utilities ─────────────────────────────────────────────────── */
.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-title .highlight {
  color: var(--accent-gold);
}

.section-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  margin: 20px auto 0;
}

/* ─── Toast Notifications ────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 16px 24px;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 3.7s forwards;
}

.toast.info { background: var(--accent-cyan); color: var(--bg-primary); }
.toast.success { background: #10B981; }
.toast.error { background: var(--danger); }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-10px); }
}


/* ─── About / Show Outline Section ──────────────────────────────────────── */
.about-section { background: var(--bg-primary); }

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

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual:hover img { transform: scale(1.05); }

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(91, 192, 190, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(28, 37, 65, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(91, 192, 190, 0.1);
  transition: all var(--transition-fast);
}
.stat-item:hover {
  border-color: rgba(91, 192, 190, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── Timeline / Show Schedule ──────────────────────────────────────────── */
.timeline-section {
  background: var(--bg-tertiary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-gold), var(--accent-cyan));
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-tertiary);
  box-shadow: var(--glow-cyan);
  z-index: 2;
}

.timeline-content {
  background: rgba(28, 37, 65, 0.6);
  border: 1px solid rgba(91, 192, 190, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-fast);
  width: 100%;
}

.timeline-content:hover {
  border-color: rgba(91, 192, 190, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.timeline-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Contestant Cards ──────────────────────────────────────────────────── */
.contestants-section {
  background: var(--bg-primary);
}

.contestants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.contestant-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(91, 192, 190, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.contestant-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.contestant-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.contestant-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contestant-card:hover .contestant-image-wrapper img {
  transform: scale(1.1);
}

.contestant-rank {
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

.contestant-week-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 12px;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91, 192, 190, 0.3);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
}

.contestant-info {
  padding: 24px;
}

.contestant-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contestant-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contestant-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.contestant-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(91, 192, 190, 0.1);
}

.contestant-votes {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vote-count {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.vote-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contestant-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star { color: var(--accent-gold); font-size: 14px; }
.star.empty { color: rgba(244, 211, 94, 0.2); }

.rating-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-left: 4px;
}

/* ─── Leaderboard ───────────────────────────────────────────────────────── */
.leaderboard-section {
  background: var(--bg-tertiary);
}

.leaderboard-table {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 60px 80px 1fr 120px 140px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(28, 37, 65, 0.5);
  border: 1px solid rgba(91, 192, 190, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  transition: all var(--transition-fast);
}

.leaderboard-row:hover {
  background: rgba(28, 37, 65, 0.8);
  border-color: rgba(91, 192, 190, 0.3);
  transform: translateX(4px);
}

.leaderboard-row.leader {
  background: rgba(91, 192, 190, 0.08);
  border-color: rgba(91, 192, 190, 0.3);
  box-shadow: var(--glow-cyan);
}

.leaderboard-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: none;
  margin-bottom: 12px;
}
.leaderboard-header:hover {
  background: transparent;
  transform: none;
}

.lb-rank {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-gold);
}

.lb-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(91, 192, 190, 0.3);
}

.lb-name {
  font-weight: 600;
  font-size: 15px;
}

.lb-votes {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-cyan);
}

.lb-rating {
  color: var(--accent-gold);
  font-weight: 600;
}

.lb-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lb-status.boss {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.lb-status.challenger {
  background: rgba(91, 192, 190, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(91, 192, 190, 0.3);
}

/* ─── Vote Modal ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid rgba(91, 192, 190, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all var(--transition-spring);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.modal-close:hover {
  background: rgba(255, 107, 107, 0.2);
  border-color: var(--danger);
  color: var(--danger);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── Vote Modal Contestant Info ─── */
.modal-contestant-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(91, 192, 190, 0.1);
}

.modal-contestant-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(91, 192, 190, 0.3);
}

.modal-contestant-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.modal-contestant-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Vote Counter ─── */
.vote-counter-section {
  margin-bottom: 8px;
}

.vote-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.vote-counter-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(91, 192, 190, 0.1);
  border: 2px solid rgba(91, 192, 190, 0.3);
  color: var(--accent-cyan);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.vote-counter-btn:hover {
  background: rgba(91, 192, 190, 0.2);
  border-color: var(--accent-cyan);
  transform: scale(1.1);
}
.vote-counter-btn:active {
  transform: scale(0.95);
}

.vote-counter-display {
  text-align: center;
  min-width: 100px;
}

.vote-counter-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.vote-counter-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Quick Amount Presets ─── */
.vote-quick-amounts {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.vote-quick-btn {
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(244, 211, 94, 0.08);
  border: 1px solid rgba(244, 211, 94, 0.2);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.vote-quick-btn:hover {
  background: rgba(244, 211, 94, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* ─── Custom Vote Input ─── */
.vote-custom-input {
  text-align: center;
  margin-bottom: 16px;
}

.vote-custom-input input {
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Vote Total Display ─── */
.vote-total-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(244, 211, 94, 0.06);
  border: 1px solid rgba(244, 211, 94, 0.15);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
}

.vote-total-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
}

/* ─── Form Elements ─────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(91, 192, 190, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(91, 192, 190, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235BC0BE' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Custom File Upload */
.file-upload {
  position: relative;
  border: 2px dashed rgba(91, 192, 190, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.file-upload:hover {
  border-color: var(--accent-cyan);
  background: rgba(91, 192, 190, 0.03);
}
.file-upload.has-file {
  border-color: var(--success);
  background: rgba(81, 207, 102, 0.05);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.file-upload-text {
  font-size: 14px;
  color: var(--text-secondary);
}
.file-upload-text strong {
  color: var(--accent-cyan);
}

.file-upload-name {
  margin-top: 8px;
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}

/* ─── Vote Counter Widget ───────────────────────────────────────────────── */
.vote-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.vote-counter-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(91, 192, 190, 0.1);
  border: 1px solid rgba(91, 192, 190, 0.3);
  color: var(--accent-cyan);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.vote-counter-btn:hover {
  background: rgba(91, 192, 190, 0.2);
  transform: scale(1.1);
}

.vote-counter-value {
  font-size: 42px;
  font-weight: 800;
  min-width: 80px;
  text-align: center;
  color: var(--accent-gold);
}

.vote-amount {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.vote-amount strong {
  color: var(--accent-gold);
  font-size: 24px;
}

/* ─── Rewards Section ───────────────────────────────────────────────────── */
.rewards-section {
  background: var(--bg-primary);
  position: relative;
  padding: 40px 20px; /* Tighter padding */
}

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

.reward-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(244, 211, 94, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--accent-gold);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.reward-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 211, 94, 0.3);
  box-shadow: var(--glow-gold);
}
.reward-card:hover::before { opacity: 1; }

.reward-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  color: var(--accent-gold);
}

.reward-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.reward-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ─── Passport Photo Preview ───────────────────────────────────────────── */
.passport-preview-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.passport-preview {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(28, 37, 65, 0.6);
  border: 2px solid rgba(91, 192, 190, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.passport-preview:has(img[style*="display: block"]) {
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.passport-preview i {
  font-size: 48px;
  color: rgba(91, 192, 190, 0.3);
}

.passport-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passport-upload-area {
  flex: 1;
}

/* ─── Gallery Section ───────────────────────────────────────────────────── */
.gallery-section {
  background: var(--bg-tertiary);
  padding-bottom: 80px;
}

.gallery-swiper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: rgba(11, 19, 43, 0.75);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  background: rgba(91, 192, 190, 0.3) !important;
  width: 10px !important;
  height: 10px !important;
  opacity: 1 !important;
  transition: all var(--transition-fast) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold) !important;
  width: 30px !important;
  border-radius: var(--radius-full) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-cyan) !important;
  background: rgba(11, 19, 43, 0.6) !important;
  width: 48px !important; height: 48px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(91, 192, 190, 0.2) !important;
  transition: all var(--transition-fast) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 24px;
  color: var(--accent-cyan);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(91, 192, 190, 0.2) !important;
  box-shadow: var(--glow-cyan) !important;
}

/* ─── FAQ Accordion ─────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-primary); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(28, 37, 65, 0.4);
  border: 1px solid rgba(91, 192, 190, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(91, 192, 190, 0.2);
}

.faq-item.active {
  border-color: rgba(91, 192, 190, 0.3);
  box-shadow: var(--glow-cyan);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--accent-cyan); }

.faq-icon {
  font-size: 20px;
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Application Form Section ──────────────────────────────────────────── */
.apply-section {
  background: var(--bg-tertiary);
}

.apply-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(28, 37, 65, 0.5);
  border: 1px solid rgba(91, 192, 190, 0.12);
  border-radius: var(--radius-xl);
  padding: 48px;
}

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

.form-step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(91, 192, 190, 0.2);
  transition: all var(--transition-fast);
}

.step-dot.active {
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  width: 32px;
  border-radius: var(--radius-full);
}

.step-dot.completed {
  background: var(--accent-gold);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.form-price-banner {
  text-align: center;
  padding: 20px;
  background: rgba(244, 211, 94, 0.05);
  border: 1px solid rgba(244, 211, 94, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.form-price-banner .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
}

.form-price-banner .price-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(91, 192, 190, 0.08);
  padding: 60px clamp(16px, 5vw, 80px) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 2px solid rgba(91, 192, 190, 0.2);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(91, 192, 190, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── Toast Notifications ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important;
  backdrop-filter: blur(20px);
  background: rgba(15, 23, 42, 0.95) !important;
  animation: slideInRight 0.4s ease, fadeOut 0.4s ease 3.6s forwards;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.toast.success {
  background: rgba(34, 197, 94, 0.95) !important;
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #ffffff !important;
}

.toast.error {
  background: rgba(239, 68, 68, 0.95) !important;
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ffffff !important;
}

.toast.info {
  background: rgba(91, 192, 190, 0.95) !important;
  border: 1px solid rgba(91, 192, 190, 0.5);
  color: #ffffff !important;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(50px); }
}

/* ─── Animations (AOS-like with CSS) ────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Responsive Design ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leaderboard-row { grid-template-columns: 50px 60px 1fr 100px; }
  .lb-status { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(11, 19, 43, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(91, 192, 190, 0.1);
  }
  .nav-links.active { right: 0; }
  .nav-links .nav-cta {
    width: 100%;
    margin-top: 12px;
    padding: 14px 28px;
  }

  .mobile-toggle { display: flex; }

  .hero-title { letter-spacing: -1px; }
  .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-dot { left: 20px; }

  .contestants-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form-container { padding: 24px; }

  .leaderboard-row { grid-template-columns: 40px 50px 1fr 80px; }
  .leaderboard-header div:last-child { display: none !important; }
  .lb-status { display: none; }

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

  .passport-preview-container {
    flex-direction: column;
    align-items: center;
  }
  .passport-preview {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .modal { padding: 24px; margin: 16px; }
  .contestant-image-wrapper { height: 220px; }
  .hero-content { padding: 32px 20px; margin: 0 12px; }
}

@media (max-width: 330px) {
  /* Strict 320px mobile viewport styling to ensure absolutely zero horizontal scrolling and beautiful layout spacing */
  .navbar { padding: 10px 12px; }
  .navbar-brand span { font-size: 16px; }
  .navbar-brand img { width: 32px; height: 32px; }
  
  .hero { min-height: 560px; }
  .hero-content { padding: 24px 12px; margin: 0 8px; border-radius: var(--radius-lg); }
  .hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-title { font-size: 26px !important; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 12px; }
  .hero-subtitle { font-size: 13px !important; line-height: 1.5; margin-bottom: 24px; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { padding: 10px 20px; font-size: 12px; }
  
  .section { padding: 40px 12px; }
  .section-title { font-size: 24px !important; }
  .section-desc { font-size: 13px !important; }
  
  .about-grid { gap: 32px; }
  .about-text h3 { font-size: 20px; }
  .about-text p { font-size: 13px; line-height: 1.6; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .stat-item { padding: 12px; }
  .stat-number { font-size: 24px; }
  
  .timeline-content { padding: 16px; }
  .timeline-title { font-size: 15px; }
  .timeline-desc { font-size: 12px; }
  
  .contestant-card { border-radius: var(--radius-md); }
  .contestant-image-wrapper { height: 180px; }
  .contestant-info { padding: 16px; }
  .contestant-name { font-size: 18px; }
  .contestant-meta { font-size: 12px; }
  .contestant-bio { font-size: 12px; -webkit-line-clamp: 4; }
  .contestant-socials { gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
  .contestant-socials a { font-size: 11px !important; }
  
  .leaderboard-table { font-size: 12px; }
  .leaderboard-row { grid-template-columns: 30px 40px 1fr 60px; padding: 12px 6px; }
  .lb-avatar { width: 30px; height: 30px; }
  
  .apply-form-container { padding: 16px 12px; border-radius: var(--radius-lg); }
  .form-price-banner { padding: 12px; margin-bottom: 20px; }
  .form-price-banner .price { font-size: 24px; }
  .form-input, .form-select, .form-textarea { padding: 10px 12px; font-size: 13px; }
  .form-label { font-size: 11px; }
  
  .modal { padding: 20px 16px; margin: 10px; }
  .modal-close { top: 12px; right: 12px; width: 28px; height: 28px; font-size: 12px; }
  .vote-counter-section { padding: 12px; }
  .vote-counter { height: 44px; }
  .vote-counter-value { font-size: 20px; }
  .vote-quick-amounts { gap: 6px; }
  .vote-quick-btn { padding: 6px 10px; font-size: 11px; }
  
  .footer-grid { gap: 24px; }
  .footer-heading { font-size: 12px; margin-bottom: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-brand p { font-size: 12px; }
}

/* ─── Custom Particle Effect (Background Accent) ────────────────────────── */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
  50% { transform: translateY(-50px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-20px) translateX(20px); opacity: 0.4; }
}
