/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --sun-gold: #f5a623;
  --sun-orange: #e8631a;
  --ocean-blue: #1a8fc1;
  --deep-ocean: #0d5a7a;
  --sky-teal: #00c9b1;
  --sand: #f7e9c8;
  --dark-bg: #0a0e1a;
  --dark-card: #111827;
  --dark-card2: #161d2e;
  --text-light: #e8eaf2;
  --text-muted: #8a94b0;
  --font-display: 'Pirata One', cursive;
  --font-body: 'Nunito', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===========================
   CANVAS PARTICLES
=========================== */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sun-gold);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sun-gold);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--sun-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--sun-gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(10,14,26,0.6) 0%,
      rgba(13,90,122,0.45) 40%,
      rgba(26,143,193,0.3) 70%,
      rgba(10,14,26,0.9) 100%),
    linear-gradient(135deg, #0a1628 0%, #0d3b5e 50%, #1a5c8a 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 60%, rgba(245,166,35,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 55%, rgba(232,99,26,0.12) 0%, transparent 60%);
  z-index: 0;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-teal);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(245,166,35,0.5), 0 0 60px rgba(232,99,26,0.3);
  animation: fadeUp 0.8s 0.25s both;
}

.hero-title span {
  color: var(--sun-gold);
  display: block;
  -webkit-text-stroke: 1px rgba(245,166,35,0.4);
}

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--sun-orange);
  margin: 0.8rem 0 0.4rem;
  animation: fadeUp 0.8s 0.4s both;
  text-shadow: 0 2px 12px rgba(232,99,26,0.5);
}

.hero-location {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s both;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sun-gold), var(--sun-orange));
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.55);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border-color: var(--sun-gold);
  color: var(--sun-gold);
}
.btn-outline:hover {
  background: var(--sun-gold);
  color: #0a0e1a;
  transform: translateY(-3px);
}

/* ===========================
   COUNTDOWN
=========================== */
.countdown-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--deep-ocean), var(--dark-bg));
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(245,166,35,0.12);
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-teal);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cd-block {
  background: var(--dark-card2);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cd-block span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--sun-gold);
  line-height: 1;
}

.cd-block small {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sun-orange);
  margin-bottom: 1rem;
}

/* ===========================
   SECTIONS
=========================== */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}

.section-dark {
  background: var(--dark-card);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: #fff;
}

.section-sub {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: var(--sun-gold);
}

/* ===========================
   INFO CARDS
=========================== */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--dark-card2);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.4);
}

.info-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--sun-gold);
  margin-bottom: 0.6rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   GAMES GRID
=========================== */
.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.game-pill {
  background: linear-gradient(135deg, rgba(26,143,193,0.2), rgba(0,201,177,0.1));
  border: 1px solid rgba(0,201,177,0.3);
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--sky-teal);
  cursor: default;
  transition: all 0.25s;
}

.game-pill:hover {
  background: linear-gradient(135deg, rgba(26,143,193,0.4), rgba(0,201,177,0.25));
  border-color: var(--sky-teal);
  transform: scale(1.06);
  box-shadow: 0 4px 20px rgba(0,201,177,0.25);
}

/* ===========================
   PRICING CARDS
=========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--dark-card2);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price-featured {
  border-color: var(--sun-gold);
  background: linear-gradient(160deg, #1a1f35, #1e2a1a);
  box-shadow: 0 0 40px rgba(245,166,35,0.2);
  transform: scale(1.04);
}

.price-featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sun-gold), var(--sun-orange));
  color: #0a0e1a;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sun-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(245,166,35,0.3);
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
}

.price-card ul {
  text-align: left;
  margin-bottom: 1.8rem;
}

.price-card ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===========================
   PDF BLOCK
=========================== */
.pdf-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--dark-card2);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 750px;
  margin: 0 auto;
  transition: box-shadow 0.3s;
}

.pdf-block:hover {
  box-shadow: 0 8px 40px rgba(245,166,35,0.12);
}

.pdf-icon-wrap {
  flex-shrink: 0;
}

.pdf-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(232,99,26,0.1));
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-info h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--sun-gold);
  margin-bottom: 0.5rem;
}

.pdf-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pdf-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   MODAL PDF
=========================== */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.pdf-modal.open {
  display: flex;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,8,18,0.88);
  backdrop-filter: blur(6px);
}

.pdf-modal-box {
  position: relative;
  z-index: 2;
  width: min(92vw, 860px);
  height: min(88vh, 900px);
  background: var(--dark-card2);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: modalIn 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: linear-gradient(90deg, rgba(245,166,35,0.12), transparent);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sun-gold);
}

.pdf-modal-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pdf-modal-close:hover { background: rgba(232,99,26,0.5); }

.pdf-modal-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-modal-body iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
}

/* ===========================
   LOCATION
=========================== */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.loc-item {
  font-size: 1.05rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.loc-item strong { color: var(--text-light); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(26,143,193,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ===========================
   SPONSORS
=========================== */
.sponsors-section { padding: 3rem 1.5rem; }

.sponsors-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.sponsor-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.sponsor-item:hover {
  border-color: var(--sun-gold);
  color: var(--sun-gold);
}

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  background: var(--dark-card2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.28s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.ig-icon ~ * { color: var(--text-light); }

.contact-card.ig:hover, .contact-card:nth-child(1):hover {
  border-color: #e1306c;
  box-shadow: 0 8px 32px rgba(225,48,108,0.2);
}

.contact-card:nth-child(2):hover {
  border-color: var(--ocean-blue);
  box-shadow: 0 8px 32px rgba(26,143,193,0.2);
}

.contact-icon {
  font-size: 2.5rem;
  background: var(--dark-bg);
  border-radius: 14px;
  padding: 0.7rem;
  margin-bottom: 0.4rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  word-break: break-all;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  position: relative;
  z-index: 2;
  background: #060912;
  border-top: 1px solid rgba(245,166,35,0.1);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sun-gold);
  margin-bottom: 0.5rem;
}

.footer-small {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===========================
   SPLASH SCREEN
=========================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06080f;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 80%, rgba(245,166,35,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(232,99,26,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(13,90,122,0.25) 0%, transparent 70%);
  animation: splashBgPulse 4s ease-in-out infinite alternate;
}

@keyframes splashBgPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* Rotating sun rays behind poster */
.splash-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 75%,
    transparent 0deg,
    rgba(245,166,35,0.04) 10deg,
    transparent 20deg,
    rgba(232,99,26,0.04) 30deg,
    transparent 40deg,
    rgba(245,166,35,0.03) 50deg,
    transparent 60deg,
    rgba(0,201,177,0.03) 70deg,
    transparent 80deg,
    rgba(245,166,35,0.04) 90deg,
    transparent 110deg,
    rgba(232,99,26,0.04) 130deg,
    transparent 150deg,
    rgba(245,166,35,0.03) 170deg,
    transparent 190deg,
    rgba(0,201,177,0.04) 210deg,
    transparent 230deg,
    rgba(245,166,35,0.04) 250deg,
    transparent 270deg,
    rgba(232,99,26,0.03) 290deg,
    transparent 310deg,
    rgba(245,166,35,0.04) 330deg,
    transparent 360deg
  );
  animation: splashRaysSpin 24s linear infinite;
  transform-origin: 50% 75%;
}

@keyframes splashRaysSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem;
  animation: splashContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes splashContentIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-poster-wrap {
  position: relative;
  display: inline-block;
}

.splash-poster {
  display: block;
  width: min(85vw, 400px);
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.3),
    0 8px 40px rgba(0,0,0,0.7),
    0 0 80px rgba(245,166,35,0.15),
    0 0 160px rgba(232,99,26,0.08);
  animation: splashPosterFloat 5s ease-in-out infinite;
}

@keyframes splashPosterFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.splash-poster-glow {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.2) 0%, transparent 70%);
  animation: splashGlowPulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes splashGlowPulse {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.splash-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.splash-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--sun-gold), var(--sun-orange));
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #06080f;
  box-shadow: 0 4px 28px rgba(245,166,35,0.45), 0 0 0 0 rgba(245,166,35,0.4);
  animation: splashBtnPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.splash-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(245,166,35,0.6);
}

@keyframes splashBtnPulse {
  0%, 100% { box-shadow: 0 4px 28px rgba(245,166,35,0.45), 0 0 0 0 rgba(245,166,35,0.3); }
  50% { box-shadow: 0 4px 28px rgba(245,166,35,0.45), 0 0 0 12px rgba(245,166,35,0); }
}

.splash-btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.splash-btn:hover .splash-btn-arrow {
  transform: translateX(4px);
}

.splash-hint {
  font-size: 0.78rem;
  color: rgba(138,148,176,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
=========================== */

/* ── Tablet & small desktop (≤900px) ── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-featured {
    transform: none;
    order: -1; /* show popular first */
  }
  .price-featured:hover { transform: translateY(-8px); }

  .location-block {
    grid-template-columns: 1fr;
  }

  .map-embed {
    height: 260px;
  }

  .map-embed iframe {
    width: 100% !important;
    height: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,14,26,0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(245,166,35,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .navbar { padding: 0.8rem 1.2rem; }

  /* Hero */
  .hero-content {
    padding: 5rem 1.2rem 3.5rem;
  }

  /* Sections */
  .section { padding: 4rem 1.2rem; }
  .section-header { margin-bottom: 2.5rem; }

  /* Countdown */
  .countdown-section { padding: 2.5rem 1rem; }
  .countdown { gap: 0.35rem; }
  .cd-block {
    min-width: 68px;
    padding: 0.65rem 0.8rem;
  }
  .cd-block span { font-size: 1.9rem; }
  .cd-block small { font-size: 0.65rem; }
  .cd-sep { font-size: 2rem; }

  /* Info cards */
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .info-card { padding: 1.5rem 1rem; }

  /* Games */
  .game-pill { font-size: 0.9rem; padding: 0.6rem 1.2rem; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .price-featured { transform: none; order: -1; }
  .price-featured:hover { transform: translateY(-8px); }

  /* PDF block */
  .pdf-block {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.2rem;
    gap: 1.5rem;
  }
  .pdf-actions { justify-content: center; flex-direction: column; align-items: center; }
  .pdf-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Location */
  .location-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-embed { height: 240px; }
  .map-embed iframe { width: 100% !important; height: 100%; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 1rem;
  }
  .contact-card { padding: 1.5rem 1rem; }

  /* Sponsors */
  .sponsors-row { gap: 0.7rem; }
  .sponsor-item { font-size: 0.78rem; padding: 0.5rem 1rem; }

  /* PDF modal — fullscreen en móvil */
  .pdf-modal-box {
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    border: none;
  }

  .pdf-modal-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .pdf-modal-body iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {

  /* Hero buttons */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Countdown — single row, smaller */
  .cd-block { min-width: 58px; padding: 0.55rem 0.65rem; }
  .cd-block span { font-size: 1.6rem; }
  .cd-sep { font-size: 1.6rem; }

  /* Info cards — stack to 1 col on very small screens */
  .intro-grid { grid-template-columns: 1fr; }

  /* Contact — stack */
  .contact-grid { grid-template-columns: 1fr; max-width: 320px; }

  /* Navbar logo smaller */
  .nav-logo { font-size: 1.1rem; }
  .nav-logo img { width: 28px; height: 32px; }

  /* Sections */
  .section { padding: 3rem 1rem; }

  /* Splash poster */
  .splash-poster { width: min(90vw, 320px); }
  .splash-btn { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
}

/* ── Very small (≤360px) ── */
@media (max-width: 360px) {
  .cd-block { min-width: 50px; padding: 0.45rem 0.5rem; }
  .cd-block span { font-size: 1.35rem; }
  .cd-sep { font-size: 1.4rem; }
  .game-pill { font-size: 0.82rem; padding: 0.5rem 1rem; }
}
/* ==============================
   POPUP ASISTIR AL EVENTO
============================== */
.attend-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.attend-modal.open {
  opacity: 1;
  pointer-events: all;
}
.attend-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.attend-box {
  position: relative;
  background: linear-gradient(135deg, #0f1623 0%, #1a2640 100%);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.1);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.attend-modal.open .attend-box {
  transform: scale(1);
}
.attend-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.attend-close:hover { background: rgba(255,255,255,0.25); }
.attend-emoji {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.attend-title {
  font-family: 'Pirata One', cursive;
  font-size: 1.8rem;
  color: #f5a623;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.attend-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.attend-text strong { color: #fff; }
.attend-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5a623, #e8631a);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
}
.attend-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.5);
}
.attend-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ==============================
   HERO TICKET BANNER
============================== */
.hero-ticket-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(245,166,35,0.5);
  border-radius: 16px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  max-width: 340px;
}
.hero-ticket-banner:hover {
  background: rgba(245,166,35,0.18);
  border-color: #f5a623;
  transform: translateY(-2px);
}
.hero-ticket-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.hero-ticket-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-ticket-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5a623;
  line-height: 1.3;
}
.hero-ticket-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.hero-ticket-arrow {
  font-size: 1.2rem;
  color: #f5a623;
  margin-left: auto;
  flex-shrink: 0;
}

/* hero ticket banner posicion fija derecha */
.hero-ticket-banner {
  position: fixed !important;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 100;
  margin: 0 !important;
  flex-direction: column;
  text-align: center;
  max-width: 160px;
}
.hero-ticket-arrow {
  display: none;
}
@media (max-width: 768px) {
  .hero-ticket-banner {
    position: fixed !important;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    max-width: 130px;
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ==============================
   STAR FAB BOTÓN FLOTANTE
============================== */
.star-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: linear-gradient(135deg, #f5a623, #e8631a);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(245,166,35,0.6);
  animation: starPulse 2s ease-in-out infinite;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.star-fab-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@keyframes starPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(245,166,35,0.6); transform: scale(1); }
  50% { box-shadow: 0 8px 35px rgba(245,166,35,0.9); transform: scale(1.06); }
}
.star-fab:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 40px rgba(245,166,35,0.8);
}

/* ==============================
   TICKET POPUP
============================== */
.ticket-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ticket-popup.open {
  opacity: 1;
  pointer-events: all;
}
.ticket-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.ticket-popup-box {
  position: relative;
  background: linear-gradient(135deg, #0f1623 0%, #1a2640 100%);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.1);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.ticket-popup.open .ticket-popup-box {
  transform: scale(1);
}
.ticket-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ticket-popup-close:hover { background: rgba(255,255,255,0.25); }