/* ==========================================================================
   MIXED CARDS EVENTS - TCG BEURS EDITIE 1
   Design System & Styling
   Primary Colors: #AF5B22 (Terracotta Amber) & #1A4452 (Deep Oceanic Teal)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Fire & Water Brand Palette */
  --brand-orange: #FF4D00;            /* Fiery Blazing Orange */
  --brand-orange-hover: #FF6A1A;      /* Fire Glow Hover */
  --brand-orange-glow: rgba(255, 77, 0, 0.45);
  
  --brand-teal: #00B4D8;              /* Crystal Water Aqua */
  --brand-teal-dark: #0077B6;         /* Deep Ocean Blue */
  --brand-teal-glow: rgba(0, 180, 216, 0.45);

  --brand-fire-red: #FF2A00;          /* Volcanic Ember Red */
  --brand-water-cyan: #00E5FF;        /* Electric Cyan Water */

  /* Backgrounds (Oceanic Blue Dark Realm) */
  --bg-dark-core: #06121C;
  --bg-dark-surface: #0C1D2B;
  --bg-dark-card: rgba(14, 30, 44, 0.88);
  --bg-dark-glass: rgba(10, 22, 33, 0.78);

  --bg-light-core: #F4F7F8;
  --bg-light-card: #FFFFFF;
  
  /* Text Colors */
  --text-dark-primary: #F8FAFC;
  --text-dark-secondary: #94A3B8;
  
  /* Accent Colors */
  --accent-gold: #FFB703;
  --accent-green: #10B981;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Borders & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-core);
  color: var(--text-dark-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #FFA04D 0%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #48CAE4 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-brand {
  background: linear-gradient(135deg, #FF6A00 0%, #FF2A00 45%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
  position: relative;
  scroll-margin-top: 110px;
}

/* Header & Navbar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: #0077B6;
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 24s linear infinite;
}

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

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 900;
  font-size: 0.9rem;
}

.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(9, 19, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark-primary);
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: #FFF;
  box-shadow: 0 0 15px var(--brand-orange-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 1px;
  line-height: 1;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-orange);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--brand-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.6);
  background: linear-gradient(135deg, #FF6A1A, #FF2A00);
}

.btn-secondary {
  background: rgba(0, 180, 216, 0.15);
  color: var(--text-dark-primary);
  border: 1px solid rgba(0, 180, 216, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(0, 180, 216, 0.35);
  border-color: rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.4rem;
  color: var(--text-dark-primary);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: none;
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
  color: var(--brand-orange);
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  padding-top: 10.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 85% 25%, rgba(0, 180, 216, 0.38) 0%, transparent 55%),
              radial-gradient(circle at 15% 75%, rgba(255, 77, 0, 0.35) 0%, transparent 55%),
              var(--bg-dark-core);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 2;
}

/* Hero Background TCG Banner Watermark */
.hero-bg-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/event_banner.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

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

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-badge.highlight {
  background: rgba(255, 77, 0, 0.18);
  border-color: rgba(255, 77, 0, 0.45);
  color: #FFA04D;
}

.hero-badge.teal {
  background: rgba(0, 180, 216, 0.18);
  border-color: rgba(0, 180, 216, 0.45);
  color: #00E5FF;
}

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-dark-secondary);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* COMPACT INLINE COUNTDOWN BAR */
.countdown-compact-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(9, 19, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-width: fit-content;
}

.countdown-label-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-digits-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.digit-seg {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.digit-seg span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}

.digit-seg small {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.digit-colon {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  margin-top: -3px;
}

@media (max-width: 600px) {
  .countdown-compact-bar {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0.85rem;
    gap: 0.4rem;
    box-sizing: border-box;
  }
  .countdown-label-tag {
    font-size: 0.72rem;
    gap: 0.25rem;
  }
  .countdown-digits-row {
    gap: 0.35rem;
  }
  .digit-seg {
    gap: 0.15rem;
  }
  .digit-seg span {
    font-size: 1.15rem;
  }
  .digit-seg small {
    font-size: 0.65rem;
  }
  .digit-colon {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .countdown-label-tag span {
    display: none;
  }
}

/* HERO CHARACTER SHOWCASE TRIO */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more-tcg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(9, 19, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 77, 0, 0.35);
  backdrop-filter: blur(14px);
  transition: var(--transition-fast);
  z-index: 5;
}

.more-tcg-badge:hover {
  transform: translateY(-3px);
  border-color: var(--brand-orange);
  background: rgba(255, 77, 0, 0.22);
  box-shadow: 0 15px 35px var(--brand-orange-glow);
}

.character-showcase-trio {
  position: relative;
  width: 100%;
  max-width: 660px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  perspective: 1000px;
}

/* Unified Ambient Glow Behind ALL Images (Fire & Water Dual Aura) */
.trio-background-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 50%, rgba(255, 77, 0, 0.52) 0%, transparent 60%),
              radial-gradient(circle at 75% 50%, rgba(0, 180, 216, 0.52) 0%, transparent 60%),
              radial-gradient(circle at 50% 50%, rgba(255, 183, 3, 0.25) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.char-wrapper {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  cursor: pointer;
}

/* Luffy (Left) */
.char-luffy {
  left: 0;
  z-index: 2;
  transform: translateX(-40px) rotate(-9deg) scale(0.94);
  will-change: transform;
}

.char-luffy .char-img {
  width: 280px;
  height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(255, 77, 0, 0.55));
}

/* Pikachu (Center Front & Prominent) */
.char-pikachu {
  left: 50%;
  transform: translateX(-50%) translateY(-25px) scale(1.15);
  z-index: 3;
  will-change: transform;
}

.char-pikachu .char-img {
  width: 320px;
  height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(245, 158, 11, 0.7));
}

/* Yugi (Right) */
.char-yugi {
  right: 0;
  z-index: 1;
  transform: translateX(40px) rotate(9deg) scale(0.94);
  will-change: transform;
}

.char-yugi .char-img {
  width: 280px;
  height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(125, 211, 252, 0.5));
}

/* Character badges */
.char-label {
  margin-top: -15px;
  background: rgba(9, 19, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.char-label.highlight-label {
  border-color: var(--brand-orange);
  color: #FF9E59;
  box-shadow: 0 8px 25px var(--brand-orange-glow);
}

@media (max-width: 1024px) {
  .character-showcase-trio {
    height: 440px;
    margin: 0 auto;
  }
  .char-pikachu .char-img { width: 240px; height: 350px; }
  .char-luffy .char-img { width: 220px; height: 320px; }
  .char-yugi .char-img { width: 210px; height: 310px; }
}

@media (max-width: 768px) {
  .character-showcase-trio {
    height: 440px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Luffy (Left Layered) */
  .char-luffy {
    left: 4%;
    bottom: 75px;
    z-index: 1;
    transform: translateY(0) scale(0.95);
  }
  .char-luffy .char-img {
    width: 195px;
    height: 295px;
  }
  
  /* Pikachu (Center Foreground) */
  .char-pikachu {
    left: 50%;
    bottom: 45px;
    z-index: 3;
    transform: translateX(-50%) translateY(-20px) scale(1.1);
  }
  .char-pikachu .char-img {
    width: 230px;
    height: 340px;
  }
  
  /* Yugi (Right Layered) */
  .char-yugi {
    right: 4%;
    bottom: 85px;
    z-index: 2;
    transform: translateY(0) scale(0.95);
  }
  .char-yugi .char-img {
    width: 195px;
    height: 295px;
  }
  
  .char-label {
    font-size: 0.72rem;
    padding: 0.28rem 0.7rem;
    margin-top: -12px;
  }
}

@media (max-width: 480px) {
  .character-showcase-trio {
    height: 390px;
    max-width: 350px;
  }
  .char-luffy { left: 1%; bottom: 65px; }
  .char-pikachu { bottom: 40px; }
  .char-yugi { right: 1%; bottom: 75px; }
  .char-luffy .char-img { width: 165px; height: 250px; }
  .char-pikachu .char-img { width: 195px; height: 290px; }
  .char-yugi .char-img { width: 165px; height: 250px; }
  .char-label { font-size: 0.65rem; padding: 0.22rem 0.6rem; margin-top: -10px; }
  .more-tcg-badge { margin-top: -3.2rem; font-size: 0.75rem; padding: 0.38rem 1rem; }
}

/* SECTION 2: HIGHLIGHTS & STATS */
.highlights-section {
  background: var(--bg-dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--bg-dark-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange);
  box-shadow: 0 15px 35px var(--brand-orange-glow);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(175, 91, 34, 0.15);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  font-weight: 600;
}

/* OFFICIAL EVENT BANNER SHOWCASE SECTION */
.banner-showcase-section {
  padding: 2.5rem 0;
  background: var(--bg-dark-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-banner-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 77, 0, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: #000;
}

.featured-banner-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.event-banner-frame:hover .featured-banner-img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.banner-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(9, 19, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: calc(100% - 3rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.banner-badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 10px var(--brand-orange);
  flex-shrink: 0;
}

.banner-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFF;
  line-height: 1.2;
}

.banner-badge-sub {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .banner-showcase-section {
    padding: 1.5rem 0;
  }
  .featured-banner-img {
    max-height: 240px;
  }
  .banner-overlay-badge {
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    max-width: calc(100% - 1.7rem);
  }
  .banner-badge-title {
    font-size: 0.9rem;
  }
  .banner-badge-sub {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .featured-banner-img {
    max-height: 190px;
  }
  .banner-overlay-badge {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0.75rem 1rem;
  }
  .banner-badge-title {
    font-size: 0.85rem;
  }
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark-secondary);
}

/* SECTION 3: TCG CATEGORIES SHOWCASE */
.tcg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tcg-category-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

/* Card Background Image Overlay with Gradient */
.tcg-card-bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.8);
}

.tcg-category-card:hover .tcg-card-bg-overlay {
  transform: scale(1.08);
  filter: brightness(0.95);
}

/* Banner Hover & Frame FX */
.event-banner-frame:hover .featured-banner-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.tcg-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-orange));
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 2;
}

.tcg-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tcg-category-card:hover::before {
  opacity: 1;
}

.tcg-card-icon {
  font-size: 2.5rem;
}

.tcg-card-title {
  font-size: 1.5rem;
  color: #FFF;
}

.tcg-card-desc {
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

.tcg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tcg-tag {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
}

/* SECTION 4: PROGRAMME & TIMETABLE */
.schedule-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.schedule-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.schedule-card.vip {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(145deg, rgba(26, 38, 45, 0.9), rgba(15, 30, 38, 0.9));
}

.schedule-card.vip::after {
  content: 'VIP ONLY';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}

.schedule-card.vip .schedule-time {
  color: var(--accent-gold);
}

.schedule-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.schedule-list {
  list-style: none;
  margin-top: 1.5rem;
}

.schedule-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
}

.schedule-list li i {
  color: var(--brand-orange);
}

/* SECTION 5: TICKETS & PRICING */
.tickets-section {
  background: radial-gradient(circle at 50% 50%, rgba(26, 68, 82, 0.3) 0%, var(--bg-dark-core) 100%);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ticket-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.ticket-card.popular {
  border-color: var(--brand-orange);
  box-shadow: 0 20px 40px var(--brand-orange-glow);
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-full);
}

.ticket-type {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.ticket-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.ticket-price span {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

.ticket-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.ticket-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ticket-features li i {
  color: var(--brand-orange);
}

/* SECTION 6: LOCATION & VENUE */
.location-card {
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.location-content {
  padding: 3.5rem;
}

.location-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.loc-feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(26, 68, 82, 0.4);
  color: #7DD3FC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.location-map-visual {
  background: linear-gradient(135deg, rgba(26, 68, 82, 0.8), rgba(9, 19, 24, 0.95));
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

/* SECTION 7: ABOUT US & PARTNERS */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.about-text p {
  color: var(--text-dark-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.partner-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.partner-card {
  flex: 1;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  transition: var(--transition-fast);
}

.partner-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-3px);
}

/* SECTION 8: CONTACT FORM */
.contact-section {
  background: var(--bg-dark-surface);
}

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(16px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(9, 19, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 15px var(--brand-orange-glow);
}

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

/* FOOTER */
.footer {
  background: var(--bg-dark-core);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #FFF;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-dark-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark-secondary);
  font-size: 0.9rem;
}

/* MODAL DIALOGS */
.custom-modal {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--bg-dark-surface);
  color: var(--text-dark-primary);
  max-width: 560px;
  width: 90%;
  margin: auto;
  padding: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.custom-modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: 2rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dark-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-dark-surface);
  border: 1px solid var(--accent-green);
  color: #FFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid, .location-card, .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-title {
    font-size: clamp(3.2rem, 7vw, 4.2rem);
  }
  .tcg-grid, .tickets-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 115px;
  }
  section {
    scroll-margin-top: 115px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar.scrolled {
    padding: 0.4rem 0;
  }
  .logo-title {
    font-size: 1.1rem;
    line-height: 1;
  }
  .logo-subtitle {
    font-size: 0.62rem;
    margin-top: -1px;
    letter-spacing: 1.8px;
    line-height: 1;
  }
  .hero-section {
    padding-top: 7.5rem;
  }
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: clamp(2.6rem, 9.5vw, 3.6rem);
    line-height: 1.08;
  }
  .tcg-grid, .tickets-grid, .stats-grid, .schedule-container, .location-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ticket-card.popular {
    transform: none;
  }
}

/* FULLSCREEN MOBILE NAVIGATION OVERLAY */
.fullscreen-nav-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 3000;
  background: rgba(9, 19, 24, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.fullscreen-nav-overlay::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--brand-orange-glow) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.fullscreen-nav-overlay::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--brand-teal-glow) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.fullscreen-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.fullscreen-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fullscreen-nav-close {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: #FFF;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.fullscreen-nav-close:hover {
  color: var(--brand-orange);
  background: transparent;
  border: none;
  transform: rotate(90deg);
}

.fullscreen-nav-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: auto 0;
  padding: 2rem 0;
  max-width: 500px;
  width: 100%;
  align-self: center;
}

.fullscreen-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.fullscreen-nav-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fullscreen-nav-link:hover, .fullscreen-nav-link.active {
  color: #FFFFFF;
  transform: scale(1.06);
}

.fullscreen-nav-link iconify-icon {
  color: var(--brand-orange);
  font-size: 1.5rem;
}

.fullscreen-nav-footer {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* STICKY FLOATING TICKET BUTTON */
.sticky-ticket-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-orange), #FF2A00);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
  animation: floatPulse 3s ease-in-out infinite;
}

.sticky-ticket-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 35px rgba(255, 77, 0, 0.75), 0 0 25px rgba(255, 255, 255, 0.2);
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(255, 77, 0, 0.8), 0 0 25px rgba(255, 77, 0, 0.5);
  }
}

@media (max-width: 600px) {
  .sticky-ticket-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
