/* ==========================================================================
   NAGA ENTERPRISE - OFFICIAL STYLESHEET (MULTI-DEVICE & RICH VISUALS)
   Pemancingan Galatama & Gantangan Lomba Burung Berkicau
   Design System: Indonesian Hobbyist, High Attention Lock, Ultra Fast & Fluid
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-darkest: #070a10;
  --bg-primary: #0a0f1d;
  --bg-secondary: #0f172a;
  --bg-surface: #141e33;
  --bg-card: #18233c;
  --bg-card-hover: #1e2c4a;
  
  --gold-300: #fde047;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --gold-gradient: linear-gradient(135deg, #fde047 0%, #f59e0b 50%, #d97706 100%);
  --gold-glow: rgba(245, 158, 11, 0.35);

  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-gradient: linear-gradient(135deg, #34d399 0%, #10b981 50%, #047857 100%);
  --emerald-glow: rgba(16, 185, 129, 0.35);

  --cyan-500: #06b6d4;
  --ruby-500: #ef4444;
  --ruby-glow: rgba(239, 68, 68, 0.35);

  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-emerald: rgba(16, 185, 129, 0.35);

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.25);
  --shadow-emerald: 0 8px 30px rgba(16, 185, 129, 0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  font-size: 16px; /* Prevents auto-zoom on iOS */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

/* ==========================================================================
   TOP ATTENTION LOCK BANNER
   ========================================================================== */
.top-ticker {
  background: linear-gradient(90deg, #991b1b, #b45309, #047857);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: clamp(0.72rem, 2.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  position: relative;
  z-index: 100;
  line-height: 1.4;
}

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

.top-ticker .pulse-badge {
  display: inline-block;
  background-color: #ef4444;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  margin-right: 0.4rem;
  animation: pulseGlow 1.5s infinite;
  vertical-align: middle;
}

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

/* ==========================================================================
   MAIN NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 15, 29, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 0.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.3px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--emerald-400);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
  color: var(--gold-400);
}

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

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  min-height: 38px;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  min-height: 48px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-emerald {
  background: var(--emerald-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #ffffff;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100%;
  background: #0b1120;
  border-left: 1px solid var(--border-gold);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.85);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: #ffffff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-400);
}

.mobile-drawer-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   HERO SECTION - Authentic Photography & Attention Lock
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.88) 0%, rgba(10, 15, 29, 0.95) 100%),
              url('/images/hero-mancing.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(24, 35, 60, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.95rem;
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  font-weight: 700;
  color: var(--gold-400);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
  text-align: center;
}

.hero-badge .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--ruby-500);
  box-shadow: 0 0 8px var(--ruby-500);
  animation: pulseDot 1.2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.hero-title .highlight-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-title .highlight-emerald {
  background: var(--emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-desc {
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Dual Showcase Cards (Visual Hero Hook) */
.hero-visual-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  text-align: left;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-bg {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 16, 0.95) 0%, rgba(7, 10, 16, 0.4) 70%, transparent 100%);
}

.showcase-content {
  position: relative;
  z-index: 2;
}

.showcase-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.2rem;
  display: block;
}

.showcase-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

/* Dual Pillar Switcher */
.pillar-selector {
  display: inline-flex;
  background: rgba(19, 28, 51, 0.9);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}

.pillar-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.pillar-tab.active {
  background: var(--gold-gradient);
  color: var(--bg-darkest);
  box-shadow: 0 2px 10px var(--gold-glow);
}

.pillar-tab.active.emerald {
  background: var(--emerald-gradient);
  color: #fff;
  box-shadow: 0 2px 10px var(--emerald-glow);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

/* Countdown Card */
.countdown-box {
  background: linear-gradient(135deg, rgba(24, 35, 60, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 1.75rem);
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.4rem, 1.5vw, 0.85rem);
}

.timer-slot {
  background: rgba(10, 15, 29, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.25rem;
}

.timer-label {
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-emerald);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-badge.gold {
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--border-gold);
}

.section-title {
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SCHEDULE / JADWAL LOMBA
   ========================================================================== */
.schedule-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  min-height: 38px;
}

.filter-btn:hover {
  border-color: var(--gold-400);
  color: #fff;
}

.filter-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--bg-darkest);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card-banner {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.event-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-banner-img {
  transform: scale(1.05);
}

.event-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, rgba(10, 15, 29, 0.3) 100%);
}

.event-banner-badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.event-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.badge-kicau {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-300);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(4px);
}

.badge-mancing {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-300);
  border: 1px solid var(--border-emerald);
  backdrop-filter: blur(4px);
}

.event-date-box {
  background: rgba(10, 15, 29, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.35rem 0.65rem;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}

.event-name {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.event-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.spec-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-line svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.event-prize-box {
  background: rgba(10, 15, 29, 0.7);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}

.prize-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.prize-amount {
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1;
}

.prize-extra {
  font-size: 0.75rem;
  color: var(--emerald-400);
  margin-top: 0.25rem;
  font-weight: 600;
}

.ticket-quota-bar {
  margin-bottom: 1.1rem;
}

.quota-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.quota-labels .urgent {
  color: var(--ruby-500);
  animation: pulseDot 2s infinite;
}

.progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.progress-fill.red {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.event-footer {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
}

.event-footer .btn {
  flex: 1;
}

/* ==========================================================================
   INTERACTIVE LAPAK & GANTANGAN SELECTOR
   ========================================================================== */
.interactive-arena {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.arena-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.arena-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.legend-chip {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.chip-available {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--emerald-400);
}

.chip-taken {
  background: rgba(239, 68, 68, 0.3);
  border: 1px solid rgba(239, 68, 68, 0.6);
}

.chip-selected {
  background: var(--gold-400);
  border: 1px solid #fff;
  box-shadow: 0 0 10px var(--gold-glow);
}

.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

.quick-picker-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(10, 15, 29, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.quick-picker-box label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.quick-select {
  padding: 0.45rem 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 140px;
}

.pond-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.pond-simulation {
  min-width: 640px;
  background: #090e1a;
  border: 2px dashed rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.pond-water {
  height: 120px;
  background: radial-gradient(circle at 50% 50%, #0369a1 0%, #0c4a6e 60%, #082f49 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8), 0 0 20px rgba(6, 182, 212, 0.2);
  margin: 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.pond-water::after {
  content: '🌊 KOLAM GALATAMA INDUKAN BABON (AIR SIRKULASI MENGALIR)';
  color: #bae6fd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  text-align: center;
  padding: 0 1rem;
}

.seat-row {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 0.35rem;
}

.seat-btn {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: #ffffff;
  border-radius: 4px;
  padding: 0.55rem 0.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-height: 38px;
}

.seat-btn:hover:not(.taken) {
  background: var(--gold-400);
  color: var(--bg-darkest);
  border-color: #fff;
  z-index: 5;
}

.seat-btn.taken {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.65;
}

.seat-btn.selected {
  background: var(--gold-400);
  border-color: #ffffff;
  color: #000000;
  font-weight: 900;
  box-shadow: 0 0 12px var(--gold-glow);
  z-index: 10;
}

.cage-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.gantangan-simulation {
  background: #090e1a;
  border: 2px dashed rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.gantangan-roof {
  text-align: center;
  padding: 0.65rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-weight: 800;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--gold-300);
  letter-spacing: 0.5px;
}

.cage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.cage-btn {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: #ffffff;
  border-radius: 6px;
  padding: 0.75rem 0.35rem;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-height: 48px;
}

.cage-btn:hover:not(.taken) {
  background: var(--gold-400);
  color: var(--bg-darkest);
  border-color: #fff;
}

.cage-btn.taken {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}

.cage-btn.selected {
  background: var(--gold-gradient);
  color: #090e17;
  border-color: #fff;
  font-weight: 900;
  box-shadow: 0 0 15px var(--gold-glow);
}

.arena-selection-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 29, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.selection-details {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.selection-num {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}

/* ==========================================================================
   FACILITIES WITH REAL THUMBNAIL PHOTOS
   ========================================================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.facility-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.facility-thumb-wrap {
  height: 130px;
  position: relative;
  overflow: hidden;
}

.facility-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.facility-card:hover .facility-thumb-img {
  transform: scale(1.05);
}

.facility-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.facility-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-emerald);
}

.facility-title {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 800;
  color: #ffffff;
}

.facility-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   PRIZE CALCULATOR & SOUNDBOARD
   ========================================================================== */
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.calc-form-group {
  margin-bottom: 1.2rem;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 16px;
  transition: var(--transition);
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(10, 15, 29, 0.9) 0%, rgba(20, 30, 50, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.calc-prizes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.prize-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.5rem;
}

.prize-rank {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
}

.prize-val {
  font-weight: 900;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--gold-300);
  text-align: right;
  white-space: nowrap;
}

.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2.5rem;
  text-align: center;
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sound-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 0.65rem;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  min-height: 80px;
}

.sound-btn:hover, .sound-btn.playing {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald-400);
  box-shadow: 0 4px 15px var(--emerald-glow);
  transform: translateY(-2px);
}

.sound-icon {
  width: 28px;
  height: 28px;
  color: var(--emerald-400);
}

/* ==========================================================================
   LEADERBOARD & RULES
   ========================================================================== */
.leaderboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.leader-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-md);
}

.table-head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gold);
  gap: 0.5rem;
}

.table-head-bar h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 800;
  color: #fff;
}

.rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.85rem;
  background: rgba(10, 15, 29, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 0.55rem;
  transition: var(--transition);
  gap: 0.75rem;
}

.rank-item:hover {
  background: rgba(24, 35, 60, 0.9);
  border-color: var(--border-gold);
}

.rank-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.rank-pos {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  flex-shrink: 0;
}

.rank-pos.gold {
  background: var(--gold-gradient);
  color: var(--bg-darkest);
}

.rank-pos.silver {
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  color: var(--bg-darkest);
}

.rank-pos.bronze {
  background: linear-gradient(135deg, #f97316, #c2410c);
  color: #fff;
}

.rank-detail {
  min-width: 0;
}

.rank-detail h4 {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-detail p {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 900;
  color: var(--gold-400);
  text-align: right;
  flex-shrink: 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rule-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
}

.rule-box-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.rule-box-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: #fff;
}

.rule-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rule-item {
  display: flex;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.rule-check {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ==========================================================================
   FAQ & LOCATION
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  color: #ffffff;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 0.75rem;
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--gold-400);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.1rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.loc-info-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loc-item {
  display: flex;
  gap: 0.85rem;
}

.loc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.loc-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}

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

.loc-map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--border-light);
  background: #111827;
  position: relative;
}

/* ==========================================================================
   MODAL BOOKING WHATSAPP (COMPACT 1-VIEWPORT ZERO-SCROLL)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.modal-box {
  background: linear-gradient(145deg, #131d33 0%, #0c1222 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem 1.15rem;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.25);
  transform: scale(0.96) translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-height: calc(100dvh - 1.5rem);
  max-height: calc(100vh - 1.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
}

.modal-box::-webkit-scrollbar {
  display: none;
}

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

.modal-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  padding-right: 2rem;
}

.modal-title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.modal-subtitle {
  font-size: 0.62rem;
  color: var(--emerald-400);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #fff;
}

/* Compact Summary Badge */
.modal-summary-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.summary-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-pill.event-pill {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  flex: 1 1 auto;
  min-width: 0;
}

.summary-pill.spot-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-300);
  flex: 0 0 auto;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.modal-box .calc-form-group {
  margin-bottom: 0.45rem;
}

.modal-box .calc-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
  display: block;
}

.modal-box .calc-input {
  padding: 0.4rem 0.65rem;
  font-size: 14px;
  border-radius: 7px;
  background: rgba(10, 15, 29, 0.85);
  border: 1px solid var(--border-light);
  min-height: 36px;
  line-height: 1.3;
  width: 100%;
  box-sizing: border-box;
}

.modal-box .calc-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px var(--gold-glow);
  outline: none;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR & FLOATING WA
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 29, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
  padding: 0.6rem 1rem;
  z-index: 95;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.bottom-bar-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.bottom-bar-text small {
  color: var(--gold-400);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
}

.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 90;
  cursor: pointer;
  transition: var(--transition);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.floating-wa-btn svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}

/* ==========================================================================
   MULTI-DEVICE RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-visual-showcase {
    grid-template-columns: 1fr;
  }
  .calc-card, .leaderboard-grid, .rules-grid, .location-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-swipe-hint {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mobile-bottom-bar {
    display: block;
  }
  .floating-wa-btn {
    display: none;
  }
  .footer {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 2rem;
  }
  .showcase-card {
    height: 140px;
    padding: 1rem;
  }
  .pillar-selector {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  .pillar-tab {
    width: 100%;
    border-radius: var(--radius-md);
    white-space: normal;
    text-align: center;
    padding: 0.65rem 0.5rem;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .schedule-filter {
    gap: 0.35rem;
  }
  .filter-btn {
    flex: 1 1 calc(50% - 0.35rem);
    text-align: center;
  }
  .filter-btn[data-filter="all"] {
    flex: 1 1 100%;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .sound-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .arena-selection-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .selection-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .arena-selection-panel .btn {
    width: 100%;
  }
  .cage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 375px) {
  .timer-grid {
    gap: 0.25rem;
  }
  .timer-num {
    font-size: 1.35rem;
  }
  .timer-label {
    font-size: 0.58rem;
  }
  .stat-value {
    font-size: 1.3rem;
  }
  .cage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .navbar-inner {
    height: 60px;
  }
}
