:root {
  color-scheme: dark;
  --bg: #020b18;
  --bg-2: #061525;
  --bg-3: #0a1e30;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(0, 212, 255, 0.36);
  --purple: #0099cc;
  --purple-2: #40c8e0;
  --cyan: #00d4ff;
  --cyan-2: #7ef4ff;
  --silver: #cbd5e1;
  --muted: #8d98aa;
  --white: #ffffff;
  --gold: #f9d776;
  --green: #24d67a;
  --danger: #ff5874;
  --shadow-purple: 0 0 28px rgba(0, 153, 204, 0.32);
  --shadow-cyan: 0 0 30px rgba(0, 212, 255, 0.24);
  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 153, 204, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(0, 212, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #020b18 0%, #041020 42%, #020b18 100%);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: var(--white);
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #030e1a;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  border-radius: 999px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050509;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

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

.loader-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  box-shadow: var(--shadow-cyan), inset 0 0 28px rgba(0, 153, 204, 0.16);
}

.loader-line {
  position: absolute;
  width: min(320px, 62vw);
  height: 2px;
  transform: translateY(76px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loaderLine 1s linear infinite;
}

@keyframes loaderLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(280%); }
}

.league-nav {
  background: rgba(7, 7, 12, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.league-nav.scrolled {
  background: rgba(7, 7, 12, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-logo-shell {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.28), rgba(0, 212, 255, 0.12));
  box-shadow: var(--shadow-purple);
}

.brand-logo,
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name,
.brand-org {
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.brand-org {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.nav-cta,
.btn-glow,
.btn-icon-link,
.submit-btn,
.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta {
  padding: 0.72rem 1rem;
  color: #050508;
  background: linear-gradient(135deg, var(--cyan), var(--purple-2));
  box-shadow: var(--shadow-cyan);
}

.nav-toggle {
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem;
}

.nav-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.2);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cyan);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.particle-canvas,
.stadium-beams {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.stadium-beams {
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(0, 212, 255, 0.08) 35%, transparent 47%),
    linear-gradient(65deg, transparent 0 58%, rgba(0, 153, 204, 0.16) 60%, transparent 72%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 180, 220, 0.10), transparent 55%);
  opacity: 0.9;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.hero-season {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.28), rgba(0, 212, 255, 0.12));
  box-shadow: var(--shadow-cyan);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: 0.86;
  background: linear-gradient(115deg, #fff 12%, var(--cyan-2) 48%, var(--purple-2) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(0, 153, 204, 0.3));
}

.hero-season {
  margin: 0.75rem 0 0;
  color: var(--purple-2);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 720px;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
}

.hero-meta i {
  color: var(--cyan);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn-glow {
  padding: 0.9rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn-cyan-glow {
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), #b8f8ff);
  box-shadow: var(--shadow-cyan);
}

.btn-icon-link {
  padding: 0.9rem 1.1rem;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-glow:hover,
.btn-icon-link:hover,
.nav-cta:hover,
.contact-card a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero-visual {
  position: relative;
}

.poster-frame {
  position: relative;
  min-height: min(650px, 68vh);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 153, 204, 0.28), rgba(0, 212, 255, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), var(--shadow-purple);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 64%, rgba(7, 7, 12, 0.76)),
    linear-gradient(90deg, rgba(0, 212, 255, 0.12), transparent 28%, transparent 72%, rgba(0, 153, 204, 0.18));
}

.poster-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.poster-img[src=""],
.poster-img:not([src]) {
  display: none;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.poster-fallback span,
.qr-fallback span {
  color: var(--muted);
  font-size: 0.85rem;
}

.poster-fallback strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 2.8rem;
  letter-spacing: 0.03em;
}

.poster-img:not([style*="display: none"]) + .poster-fallback {
  opacity: 0;
}

.hero-badge-card {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 212, 255, 0.34);
  border-radius: 8px;
  background: rgba(7, 7, 12, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-cyan);
}

.hero-badge-card span,
.detail-card span,
.metric-card span,
.price-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge-card strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.1rem;
}


.section-pad {
  padding: clamp(4.25rem, 8vw, 7.5rem) 0;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  margin-bottom: 1.3rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  line-height: 0.95;
}

.lead-copy,
.about-section p {
  color: var(--silver);
  line-height: 1.85;
}

.lead-copy {
  font-size: 1.08rem;
  font-weight: 600;
}

.countdown-band {
  padding: 4.25rem 0;
  background:
    linear-gradient(90deg, rgba(0, 153, 204, 0.14), rgba(0, 212, 255, 0.08)),
    rgba(9, 10, 16, 0.92);
  border-block: 1px solid var(--line);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.countdown-tile,
.metric-card,
.detail-card,
.category-card,
.price-card,
.registration-form,
.qr-card,
.testimonial-card,
.contact-card,
.faq-item,
.venue-map,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.028));
  backdrop-filter: blur(14px);
}

.countdown-tile {
  position: relative;
  overflow: hidden;
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-purple);
}

.countdown-tile::before,
.metric-card::before,
.detail-card::before,
.price-card::before,
.registration-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0.86;
}

.countdown-tile span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.88;
  color: var(--white);
}

.countdown-tile small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  position: relative;
  min-height: 176px;
  padding: 1.4rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.metric-card i,
.detail-card i,
.price-card i {
  color: var(--cyan);
  font-size: 2rem;
}

.metric-card strong,
.detail-card strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.16rem;
  line-height: 1.35;
}

.metric-card:hover,
.detail-card:hover,
.category-card:hover,
.price-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-cyan);
}

.about-section,
.categories-section,
.registration-section,
.testimonials-section,
.faq-section,
.flyers-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(9, 10, 16, 0.74);
}

.organizer-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.07);
}

.organizer-strip i {
  color: var(--cyan);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature-list span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
}

.feature-list i {
  color: var(--green);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  position: relative;
  min-height: 170px;
  padding: 1.35rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.category-tab {
  min-height: 42px;
  padding: 0.55rem 1rem;
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
  font-weight: 800;
}

.category-tab.active,
.category-tab:hover {
  color: #050509;
  background: var(--cyan);
  border-color: var(--cyan);
}

.category-groups {
  display: grid;
  gap: 1.4rem;
}

.category-group h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 8px;
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--purple-2));
}

.category-card span {
  display: block;
  font-weight: 700;
}

.category-card small {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 1rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(0, 212, 255, 0.36);
  box-shadow: var(--shadow-cyan);
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.flyer-card {
  position: relative;
  min-height: clamp(360px, 54vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 153, 204, 0.28), rgba(0, 212, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.flyer-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.flyer-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.flyer-fallback span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.flyer-fallback strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
}

.flyer-card img:not([style*="display: none"]) + .flyer-fallback {
  opacity: 0;
}

.price-card h3 {
  margin: 1rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.price-card strong {
  display: block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

/* ── Promotion Section ────────────────────────────── */
.promotion-section {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(0, 153, 204, 0.05) 100%),
    #020b18;
}

.promotion-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.06), rgba(245, 158, 11, 0.04));
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promotion-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 153, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promotion-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.promotion-header h2 {
  margin: 0.5rem 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
}

.promotion-subtitle {
  margin-top: 0.75rem;
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 600;
}

.promotion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.promotion-item {
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.028));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}

.promotion-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.promotion-item i {
  display: block;
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.promotion-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.promotion-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.promotion-prizes {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.promotion-prizes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f59e0b;
}

.promotion-prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.promotion-prize-card {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid #2d2d4e;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.promotion-prize-card.additional {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.promotion-prize-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}

.promotion-prize-winner,
.promotion-prize-runner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.promotion-prize-winner i { color: #f59e0b; font-size: 1.5rem; }
.promotion-prize-runner i { color: #94a3b8; font-size: 1.4rem; }

.promotion-prize-winner span,
.promotion-prize-runner span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.promotion-prize-winner strong,
.promotion-prize-runner strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.promotion-prize-winner strong { color: #f59e0b; }
.promotion-prize-runner strong { color: #cbd5e1; }

.promotion-prize-plus {
  font-size: 2rem;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.promotion-prize-card.additional strong {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.4;
}

.promotion-prizes-note {
  font-size: 0.8rem;
  color: #4a5568;
  text-align: center;
}

.promotion-visual {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  max-height: 400px;
}

.promotion-flyer-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}

.promotion-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promotion-cta .btn-glow,
.promotion-cta .btn-icon-link {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}

@media (max-width: 991px) {
  .promotion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promotion-prizes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .promotion-card {
    padding: 1.5rem;
  }

  .promotion-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .promotion-item {
    padding: 1rem;
  }

  .promotion-item strong {
    font-size: 1.1rem;
  }

  .promotion-prizes {
    padding: 1.5rem;
  }

  .promotion-prizes-grid {
    gap: 1rem;
  }

  .promotion-cta {
    flex-direction: column;
  }

  .promotion-cta .btn-glow,
  .promotion-cta .btn-icon-link {
    width: 100%;
  }
}

/* ── Prize Tiers ─────────────────────────────────── */
.prize-section {
  background: #020b18;
}

.section-subtext {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.prize-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 1100px;
}

.prize-tier {
  background: linear-gradient(145deg, #11111f, #1a1a2e);
  border: 1px solid #2d2d4e;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.prize-tier:hover {
  transform: translateY(-6px);
  border-color: var(--gold, #f59e0b);
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.15);
}

/* Featured tier (20+ entries - highest prize) */
.prize-tier:first-child {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%), 
              linear-gradient(145deg, #1a1a2e, #071828);
  border: 2px solid #f59e0b;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.2);
}

.prize-tier:first-child::before {
  content: "★ HIGHEST PRIZE ★";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #071828;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 1;
}

.prize-tier:first-child:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.25);
}

.prize-tier-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid #2d2d4e;
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.prize-tier:first-child .prize-tier-label {
  background: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
  color: #f59e0b;
}

.prize-tier-amounts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prize-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.prize-amount i {
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.prize-tier:hover .prize-amount i {
  transform: scale(1.1);
}

.prize-amount.winner i { 
  color: #f59e0b;
}

.prize-amount.runner i { 
  color: #94a3b8;
}

.prize-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.1rem;
}

.prize-amount.winner .prize-tag {
  color: #f59e0b;
}

.prize-amount.winner strong { 
  color: #f59e0b;
}

.prize-amount.runner strong { 
  color: #cbd5e1;
}

.prize-amount strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.1;
  font-weight: 900;
}

.prize-footnote {
  font-size: 0.8rem;
  color: #4a5568;
  margin-top: 1rem;
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .prize-tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .prize-tier:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .prize-tiers {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1rem;
  }

  .prize-tier:first-child {
    grid-column: span 1;
  }

  .prize-tier:first-child::before {
    font-size: 0.6rem;
    padding: 3px 10px;
    top: -10px;
  }

  .prize-amount strong {
    font-size: 1.6rem;
  }
}

/* ── Payment ─────────────────────────────────────── */
.payment-section {
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.06), rgba(0, 153, 204, 0.1)),
    #030e1a;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  font-weight: 700;
}

.payment-methods i {
  color: var(--cyan);
}

.qr-card {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-cyan);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
}

.qr-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  color: #111827;
  text-align: center;
  padding: 1rem;
}

.qr-fallback i {
  font-size: 4rem;
}

.qr-image:not([style*="display: none"]) + .qr-fallback {
  opacity: 0;
}

.upi-id-block {
  margin-top: 1.5rem;
}

.upi-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

.upi-id-copy {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--purple);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  max-width: fit-content;
}

#upiIdText {
  font-family: var(--font-mono, monospace);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
  user-select: all;
}

.upi-copy-btn {
  background: none;
  border: none;
  color: var(--silver);
  cursor: pointer;
  padding: 0.1rem 0.25rem;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}

.upi-copy-btn:hover {
  color: var(--cyan);
}

.upi-copy-btn.copied {
  color: #16a65a;
}

.payment-steps {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: payStep;
}

.payment-steps li {
  position: relative;
  min-height: 52px;
  padding: 0.85rem 0.85rem 0.85rem 3.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
}

.payment-steps li::before {
  counter-increment: payStep;
  content: counter(payStep);
  position: absolute;
  left: 0.85rem;
  top: 0.72rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: var(--white);
  font-weight: 900;
}

.registration-form {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.form-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.form-block:first-of-type {
  padding-top: 0.3rem;
}

.form-block h3 {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.9rem;
}

.registration-form label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 800;
}

.registration-form label span {
  color: var(--cyan);
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.74rem 0.85rem;
  color: var(--white);
  background: rgba(3, 5, 12, 0.62);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-form textarea {
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 0.22rem rgba(0, 212, 255, 0.12);
}

.registration-form select option {
  color: #10131f;
  background: #ffffff;
}

.registration-form input[readonly] {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.07);
}

.registration-form input[type="file"] {
  padding: 0.67rem;
  color: var(--muted);
}

.file-note {
  display: block;
  min-height: 20px;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.file-note.ready {
  color: var(--green);
}

.field-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 0.18rem rgba(255, 88, 116, 0.12) !important;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--silver);
}

.terms-row input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.18rem;
  accent-color: var(--cyan);
}

.policy-notices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.08);
  border-left: 3px solid var(--cyan);
  border-radius: 6px;
}

.policy-notice {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.5;
}

.policy-notice strong {
  color: var(--cyan);
  font-weight: 600;
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--purple-2));
  box-shadow: var(--shadow-cyan);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.error {
  color: #ffd9df;
  border: 1px solid rgba(255, 88, 116, 0.35);
  background: rgba(255, 88, 116, 0.1);
}

.form-status.success {
  color: #d6ffe8;
  border: 1px solid rgba(36, 214, 122, 0.35);
  background: rgba(36, 214, 122, 0.1);
}

.testimonial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 2rem;
}

.gallery-logo-card {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.22), rgba(0, 212, 255, 0.1));
  box-shadow: var(--shadow-cyan);
}

.gallery-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-toolbar,
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.gallery-toolbar button {
  min-height: 44px;
  padding: 0.62rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-toolbar button:hover,
.gallery-toolbar button.active {
  color: #050509;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.gallery-card.hidden {
  display: none;
}

.gallery-tab {
  min-height: 44px;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.gallery-tab.active,
.gallery-tab:hover {
  color: #050509;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 7, 12, 0.86));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.04);
}

.gallery-card:hover::before,
.gallery-card:hover figcaption {
  opacity: 1;
}

.gallery-card:hover figcaption {
  transform: translateY(0);
}

.gallery-load-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-load-row[hidden] {
  display: none;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.5rem;
  color: var(--silver);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card i {
  color: var(--purple-2);
  font-size: 2rem;
}

.testimonial-card p {
  margin: 1rem 0;
  line-height: 1.75;
}

.testimonial-card strong {
  color: var(--white);
}

.sponsor-band {
  padding: 4.5rem 0;
  border-block: 1px solid var(--line);
  background: #030e1a;
  overflow: hidden;
}

.sponsor-track {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sponsor-track span {
  min-width: 172px;
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

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

.faq-item {
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.faq-question {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--white);
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question i {
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.1rem 1.1rem;
  color: var(--silver);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.contact-card span {
  margin: 0.4rem 0 1rem;
  color: var(--cyan);
  font-weight: 900;
}

.contact-card a {
  width: 100%;
  color: var(--white);
  background: #16a65a;
}

.venue-map {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
}

.venue-map h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.venue-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.85) contrast(1.08);
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #05060b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-brand strong,
.site-footer h3 {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.footer-brand strong {
  font-size: 2rem;
}

.footer-brand span,
.site-footer a,
.footer-bottom {
  color: var(--muted);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 800;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #050509;
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
}

.success-modal.open {
  display: grid;
}

.success-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background: linear-gradient(180deg, #0a1e30, #030e1a);
  text-align: center;
  box-shadow: var(--shadow-purple);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.success-icon {
  color: var(--green);
  font-size: 4rem;
}

.success-panel h2 {
  margin: 0.5rem 0;
  font-family: var(--font-display);
  font-size: 3rem;
}

.success-panel p {
  color: var(--silver);
}

#successRegId {
  display: inline-block;
  margin: 0.5rem 0 1.2rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.success-whatsapp-group {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.success-whatsapp-group p {
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 0.7rem;
}

.btn-whatsapp-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp-group:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.04);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.confetti-piece {
  position: fixed;
  z-index: 10000;
  top: -16px;
  width: 9px;
  height: 14px;
  border-radius: 2px;
  pointer-events: none;
  animation: confettiFall var(--fall-duration, 2.6s) linear forwards;
}

@keyframes confettiFall {
  to {
    transform: translate3d(var(--fall-x, 0), 105vh, 0) rotate(720deg);
    opacity: 0;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9400;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: grid;
}

.lightbox-panel {
  position: relative;
  width: min(100%, 1080px);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 20, 33, 0.96), rgba(7, 7, 12, 0.96));
  text-align: center;
  padding: 1rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.lightbox-media {
  min-width: 0;
}

.lightbox-media img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 8px;
  background: #050509;
}

.lightbox-caption {
  margin: 0.9rem 0 0;
  color: var(--silver);
  font-weight: 800;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-nav:hover {
  color: #050509;
  background: var(--cyan);
}

.lightbox-close {
  position: absolute;
  right: 1.15rem;
  top: 1.15rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
  background: var(--cyan);
  color: #050509;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--cyan);
  color: #050509;
}

.lightbox-panel {
  position: relative;
  padding: 3.5rem 5rem 2rem;
  text-align: center;
  max-width: 1100px;
  width: min(100% - 2rem, 1100px);
}

#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  margin: 0.75rem 0 0;
  color: var(--silver);
  font-size: 0.875rem;
}

/* Lightweight local utility layer for Tailwind-like composition without runtime compilation. */
.tw-glass {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.028));
  backdrop-filter: blur(14px);
}

.tw-neon-text {
  background: linear-gradient(115deg, #fff 12%, var(--cyan-2) 48%, var(--purple-2) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tw-muted {
  color: var(--muted);
}

.tw-cyan {
  color: var(--cyan);
}

.tw-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.utility-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 212, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(0, 153, 204, 0.18), transparent 28rem),
    #020b18;
}

.confirmation-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.confirmation-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.4rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  text-align: center;
}

.confirmation-panel h1,
.admin-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.92;
}

.muted-copy {
  color: var(--silver);
}

.confirmation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 0;
  text-align: left;
}

.confirmation-list div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.confirmation-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-list dd {
  margin: 0.35rem 0 0;
  color: var(--white);
  font-weight: 800;
  word-break: break-word;
}

.admin-page {
  min-height: 100svh;
  padding: 2rem 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1rem;
}

.admin-actions,
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-config,
.admin-filters,
.admin-stats {
  display: grid;
  gap: 1rem;
  margin: 1rem;
}

.admin-config {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) auto;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-filters {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.55fr) minmax(180px, 0.36fr);
}

.admin-config label,
.admin-filters label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-config input,
.admin-filters input,
.admin-filters select {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(3, 5, 12, 0.66);
}

.admin-filters select option {
  color: #10131f;
  background: #ffffff;
}

.admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.028));
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.admin-status {
  display: none;
  margin: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 800;
}

.admin-status.show {
  display: block;
}

.admin-status.success {
  color: #d6ffe8;
  border: 1px solid rgba(36, 214, 122, 0.35);
  background: rgba(36, 214, 122, 0.1);
}

.admin-status.error {
  color: #ffd9df;
  border: 1px solid rgba(255, 88, 116, 0.35);
  background: rgba(255, 88, 116, 0.1);
}

.admin-status.info {
  color: #d7fbff;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.1);
}

.admin-table-wrap {
  margin: 1rem;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--cyan);
  background: #0b0d16;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--silver);
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td strong {
  color: var(--white);
}

.admin-table td small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.payment-pill.verified {
  color: #d6ffe8;
  background: rgba(36, 214, 122, 0.14);
}

.payment-pill.pending {
  color: #fff3cc;
  background: rgba(249, 215, 118, 0.14);
}

.file-link {
  display: inline-flex;
  margin: 0.1rem 0.25rem 0.1rem 0;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.table-actions button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.table-actions button:hover {
  color: #050509;
  background: var(--cyan);
}

@media print {
  body {
    background: white;
    color: #111827;
  }

  .btn-icon-link,
  .success-actions {
    display: none !important;
  }

  .confirmation-panel {
    box-shadow: none;
    border-color: #d1d5db;
  }
}

@media (max-width: 1199px) {
  .league-nav .navbar-collapse {
    margin-top: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 7, 12, 0.96);
  }
}

@media (max-width: 991px) {
  .hero-container,
  .venue-map {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 7rem;
  }

  .hero-visual {
    max-width: 560px;
  }

  .highlight-grid,
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .gallery-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flyer-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .gallery-head {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .gallery-logo-card {
    width: 112px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 78px;
  }

  .brand-org {
    display: none;
  }

  .brand-name {
    font-size: 1.32rem;
  }

  .brand-logo-shell {
    width: 42px;
    height: 42px;
  }

  .hero-section {
    min-height: auto;
    padding: 6.8rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 19vw, 6.8rem);
  }

  .hero-meta span,
  .hero-actions a {
    width: 100%;
  }

  .poster-frame {
    min-height: 420px;
  }

  .hero-badge-card {
    right: 0.8rem;
    bottom: 0.8rem;
  }

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

  .highlight-grid,
  .details-grid,
  .category-grid,
  .pricing-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .success-actions {
    display: grid;
  }

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

  .gallery-logo-card {
    width: 104px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .lightbox-panel {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-media {
    grid-column: 1 / -1;
    order: -1;
  }

  .lightbox-nav {
    width: 100%;
    border-radius: 8px;
  }

  .confirmation-list,
  .admin-header,
  .admin-config,
  .admin-filters,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-header {
    display: grid;
  }
}

@media (max-width: 420px) {
  .countdown-tile {
    padding: 1rem 0.6rem;
  }

  .countdown-tile span {
    font-size: 3rem;
  }

  .registration-form {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   HIGHLIGHTS SECTION - Featured Moments
   ============================================ */

.highlights-section {
  background: linear-gradient(135deg, #020b18 0%, #071828 50%, #030d1b 100%);
  position: relative;
  overflow: hidden;
}

.highlights-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.highlights-carousel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  background: #000;
  overflow: hidden;
}

.highlights-carousel-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlights-carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.highlights-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 2px solid rgba(0, 212, 255, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.highlights-carousel-control:hover {
  background: rgba(0, 212, 255, 0.4);
  border-color: #00d4ff;
  transform: translateY(-50%) scale(1.1);
}

.highlights-prev {
  left: 1rem;
}

.highlights-next {
  right: 1rem;
}

.highlights-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
}

.highlights-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.highlights-carousel-indicator.active {
  background: #00d4ff;
  border-color: #00d4ff;
  width: 32px;
  border-radius: 6px;
}

.highlights-carousel-indicator:hover {
  background: rgba(0, 212, 255, 0.6);
}

.highlights-footer {
  margin-top: 1.5rem;
}

.highlights-footer p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .highlights-carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .highlights-prev {
    left: 0.5rem;
  }

  .highlights-next {
    right: 0.5rem;
  }

  .highlights-carousel-indicators {
    gap: 6px;
    padding: 1rem 0.5rem;
  }

  .highlights-carousel-indicator {
    width: 10px;
    height: 10px;
  }

  .highlights-carousel-indicator.active {
    width: 28px;
  }
}

/* Admin Gate */
.admin-gate {
  position: fixed;
  inset: 0;
  background: #020b18;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.admin-gate-box {
  background: #071828;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.admin-gate-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cyan);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.admin-gate-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: .25rem;
}
.admin-gate-sub {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: 1.75rem;
}
.admin-gate-field {
  text-align: left;
  margin-bottom: 1rem;
}
.admin-gate-field label {
  display: block;
  font-size: .8rem;
  color: #94a3b8;
  margin-bottom: .4rem;
}
.admin-gate-field input {
  width: 100%;
  background: #020b18;
  border: 1px solid #2d2d44;
  border-radius: 6px;
  padding: .6rem .9rem;
  color: #e2e8f0;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.admin-gate-field input:focus {
  border-color: var(--cyan);
}
.admin-gate-error {
  font-size: .8rem;
  color: #f87171;
  min-height: 1.2em;
  margin-bottom: .75rem;
}
.admin-gate-btn {
  width: 100%;
  background: var(--cyan);
  color: #020b18;
  border: none;
  border-radius: 6px;
  padding: .65rem 1rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: opacity .2s;
}
.admin-gate-btn:hover {
  opacity: .85;
}