:root {
  --bg: #02050a;
  --panel: #060b15;
  --panel-2: #0d1626;
  --text: #f5f8ff;
  --text-muted: #97aacb;
  --accent: #2d7cff;
  --accent-2: #4ea3ff;
  --accent-3: #7cc8ff;
  --border: rgba(124, 200, 255, 0.16);
  --border-accent: rgba(77, 163, 255, 0.35);
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('fonts/HelveticaNeue-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10005;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2.4rem;
  background: rgba(2, 5, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}
.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.14);
  padding: 0.35rem;
  border: 1px solid rgba(124, 200, 255, 0.24);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__text span {
  font-size: 0.62rem;
  color: var(--accent-3);
  letter-spacing: 0.28em;
  margin-top: 0.2rem;
}
.site-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.site-nav a { color: var(--text-muted); transition: all 0.25s ease; font-size: 0.95rem; }
.site-nav a:hover { color: var(--accent-3); }

/* Hamburger menu (mobile) */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  margin-left: 0.5rem;
}
.hamburger__box { width: 28px; height: 18px; display: inline-block; position: relative; }
.hamburger__inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  transform: translateY(-50%);
}
.hamburger__inner::before,
.hamburger__inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
}
.hamburger__inner::before { top: -8px; }
.hamburger__inner::after { bottom: -8px; }

/* Mobile nav panel */
.site-nav {
  align-items: center;
}
.site-nav .nav-tools { margin-left: 1rem; }

@media (max-width: 880px) {
  .hamburger { display: inline-flex; align-items: center; z-index: 10003 !important; }
  .site-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    z-index: 10002 !important;
    height: 100vh;
    width: min(100%, 280px);
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 1.25rem;
    background: rgba(2, 5, 10, 0.98);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.6);
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); z-index: 10004 !important; }
  .site-nav a { padding: 0.8rem 0; font-size: 1.05rem; }
  .site-nav .nav-tools { margin-left: 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
  .brand { z-index: 70; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 3rem;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,5,10,0.96) 0%, rgba(2,5,10,0.78) 42%, rgba(2,5,10,0.2) 100%), radial-gradient(circle at top right, rgba(45,124,255,0.18), transparent 32%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-right: 1rem;
  animation: fadeUp 0.9s ease both;
}
.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(124, 200, 255, 0.2);
  background: rgba(4, 9, 19, 0.72);
  backdrop-filter: blur(12px);
}
.hero__brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.hero__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__brand-copy strong {
  color: var(--accent-3);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__brand-copy span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.status-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
}

.status-banner__label {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.status-banner__subtext {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.status-banner--open {
  color: #b7ffb3;
  background: linear-gradient(135deg, rgba(42, 238, 110, 0.22), rgba(0, 0, 0, 0.7));
  border-bottom-color: rgba(42, 238, 110, 0.35);
}

.status-banner--closed {
  color: #ffd4cf;
  background: linear-gradient(135deg, rgba(255, 66, 66, 0.25), rgba(0, 0, 0, 0.78));
  border-bottom-color: rgba(255, 66, 66, 0.5);
  animation: closedGlow 1.8s ease-in-out infinite alternate;
}

@keyframes closedGlow {
  from {
    box-shadow: 0 0 30px rgba(255, 82, 82, 0.35);
    transform: translateY(0);
  }
  to {
    box-shadow: 0 0 42px rgba(255, 82, 82, 0.65);
    transform: translateY(-2px);
  }
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
}
.hero h1 span { color: transparent; -webkit-text-stroke: 2px var(--accent); paint-order: stroke; }

.hero__lead {
  font-size: clamp(1.15rem, 1.3vw, 1.5rem);
  max-width: 720px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__actions { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 0;
  font-weight: 700;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 8px 24px rgba(45, 124, 255, 0.28); }
.button--primary:hover { box-shadow: 0 12px 32px rgba(45, 124, 255, 0.4); }
.button--ghost { border: 2px solid var(--accent-3); color: var(--accent-3); }

.hero__meta { display: flex; gap: 2.5rem; flex-wrap: wrap; color: var(--text-muted); margin-top: 2rem; }
.hero__meta strong { display: block; color: var(--accent); margin-bottom: 0.3rem; font-size: 0.85rem; }
.hero__meta span { font-size: 0.95rem; }

.hero__social,
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-square,
.social-link {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.social-square:hover,
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}
.social-links {
  margin-top: 1rem;
}
.social-link__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 !important;
  padding: 0 !important;
}
.social-link__icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

/* Sections */
.section {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.section--pricing { background: var(--panel); }
.section--dark { background: var(--panel-2); }
.section--location { background: linear-gradient(135deg, rgba(45,124,255,0.12), transparent); }
.section--distribution { background: radial-gradient(circle at top left, rgba(45,124,255,0.14), transparent 42%), var(--panel); }

.section-heading { max-width: 860px; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 0 0 0.5rem; text-transform: uppercase; font-weight: 900; letter-spacing: -0.01em; }
.section-heading__eyebrow { color: var(--accent); }
.section-heading__meta { color: var(--text-muted); margin: 0; }
.section-heading--light .section-heading__eyebrow,
.section-heading--light h2,
.section-heading--light .section-heading__meta { color: var(--text); }
.section-heading--light h2 { color: var(--text); }

/* Games Grid */
.games-search-panel {
  display: grid;
  gap: 1rem;
}
.games-search {
  display: grid;
  gap: 0.6rem;
  max-width: 640px;
}
.games-search span {
  font-size: 0.95rem;
  color: var(--accent-3);
  font-weight: 700;
}
.games-search input {
  width: 100%;
  border: 1px solid rgba(124, 200, 255, 0.22);
  background: rgba(6, 11, 21, 0.9);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
}
.games-search input:focus {
  outline: 2px solid rgba(77, 163, 255, 0.3);
  border-color: rgba(77, 163, 255, 0.5);
}
.games-search__hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.games-featured {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 1.4rem;
}
.games-featured__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.games-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.15);
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}
.games-featured__header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}
.games-featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}
.games-featured__card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
}
.games-featured__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.16);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.games-featured__card h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}
.games-featured__card p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
/* Platform badges */
.platform-badges { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; margin-top: 0.5rem; }
.platform-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.6rem; background: rgba(255,255,255,0.03); border-radius: 999px; border: 1px solid rgba(255,255,255,0.04); color: var(--text); text-decoration: none; font-weight:700; font-size:0.85rem; }
.platform-badge img { width: 20px; height: 20px; display: inline-block; }
.platform-badge__label { display: inline-block; margin-left: 0.2rem; }
.games-lead {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding: 1.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}
.games-count {
  font-weight: 800;
  color: var(--accent-3);
  margin: 0 0 0.35rem;
}
.games-desc {
  color: var(--text-muted);
  margin: 0;
}
.game-card {
  display: grid;
  gap: 0.7rem;
  min-height: 92px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.game-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  word-break: break-word;
}
.game-card__header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
}
.game-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.game-card__icon--highlight {
  background: rgba(255, 215, 0, 0.18);
}
.game-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.game-card__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.15rem;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(77, 163, 255, 0.12);
}
.game-card__platform img {
  width: 15px;
  height: 15px;
}
.game-card--empty {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(77, 163, 255, 0.35);
  box-shadow: 0 18px 40px rgba(45, 124, 255, 0.14);
}

.no-results-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 151, 0, 0.16);
  color: #ffd98c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.game-card--empty h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.game-card--empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 163, 255, 0.45);
  box-shadow: 0 22px 40px rgba(45, 124, 255, 0.16);
}
@media (max-width: 1080px) {
  .games-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
@media (max-width: 760px) {
  .games-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .games-card { min-height: auto; }
}
@media (max-width: 620px) {
  .games-grid { grid-template-columns: 1fr; }
  .games-featured__grid { grid-template-columns: 1fr; }
  .games-lead { padding: 1.2rem; }
  .game-card { text-align: left; align-items: start; }
  .game-card a { text-align: left; }
}

/* PC Specs */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.spec-card {
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.94), rgba(4, 9, 21, 0.92));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.spec-card--hero {
  grid-column: 1 / -1;
  display: grid;
  gap: 1.25rem;
  align-items: start;
  justify-items: start;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.16), rgba(4, 9, 21, 0.95));
  border-color: rgba(77, 163, 255, 0.28);
}
.spec-card__meta .eyebrow {
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.spec-card__meta h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.spec-card__text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 660px;
  line-height: 1.8;
}
.spec-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.spec-card__badges span {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Large-screen adjustments for improved UX */
@media (min-width: 1200px) {
  .site-header {
    padding: 1.6rem 3.5rem;
  }
  .brand__logo {
    width: 64px;
    height: 64px;
    padding: 0.45rem;
  }
  .brand__text {
    font-size: 1.55rem;
  }
  .brand__text span { font-size: 0.92rem; }

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 4.5rem;
  }
  .hero__content {
    max-width: 1200px;
    padding-right: 2.5rem;
  }
  .hero h1 {
    font-size: clamp(5.5rem, 7.5vw, 10rem);
    line-height: 0.86;
  }
  .hero__brand-logo { width: 86px; height: 86px; }
}

/* WhatsApp floating button */
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.28);
  z-index: 120;
  text-decoration: none;
}
.whatsapp-button:hover { transform: translateY(-4px); }
.whatsapp-button svg { width: 26px; height: 26px; }
.spec-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.spec-card__image {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-card__image img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.spec-card__label {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-3);
  font-weight: 700;
}
.spec-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}
.spec-card__list li {
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-card__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
.spec-card__list a:hover {
  color: var(--accent-2);
}
.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.45);
  box-shadow: 0 28px 60px rgba(45, 124, 255, 0.18);
}
@media (max-width: 1080px) {
  .spec-card--hero { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .specs-grid { grid-template-columns: 1fr; }
  .spec-card { min-height: auto; }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.price-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 2px solid var(--border-accent);
  padding: 2rem 1.5rem;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,124,255,0.12), transparent);
  pointer-events: none;
}
.price-card__content { position: relative; z-index: 1; }
.price-card__icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.price-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(242, 228, 55, 0.15); }
.price-card h3 { font-size: 1.1rem; text-transform: uppercase; margin: 0.8rem 0; font-weight: 700; letter-spacing: 0.05em; }
.price { font-size: 2.8rem; margin: 0.5rem 0; color: var(--accent); font-weight: 900; }
.price span { font-size: 1.1rem; }
.price-card__duration { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }
.price-card ul { padding-left: 1rem; margin: 1rem 0; color: var(--text-muted); list-style: none; }
.price-card ul li { margin: 0.4rem 0; font-size: 0.85rem; }
.price-card ul li::before { content: '▸ '; color: var(--accent); }
.price-card__btn {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.8rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
  border: 2px solid var(--accent);
}
.price-card__btn:hover { background: transparent; color: var(--accent); }

/* Recharge Grid */
.recharge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.recharge-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.recharge-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(242, 228, 55, 0.08); }
.recharge-card__medal {
  position: absolute;
  top: -12px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, #4ea3ff, #2d7cff, #1659c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(45, 124, 255, 0.32), inset -2px -2px 6px rgba(0,0,0,0.3);
}
.recharge-card__medal--x3 { background: radial-gradient(circle at 30% 30%, #e8e8e8, #c0c0c0, #a8a8a8); }
.recharge-card__medal--x5 { background: radial-gradient(circle at 30% 30%, #ffd700, #daa520, #d4af37); }
.recharge-card__coins { font-size: 2.2rem; margin: 0.5rem 0 1rem; opacity: 0.8; }
.recharge-card h3 { font-size: 1.05rem; text-transform: uppercase; margin: 0.5rem 0; font-weight: 700; }
.recharge-card ul { padding: 0; margin: 0.8rem 0; list-style: none; }
.recharge-card ul li { margin: 0.5rem 0; font-size: 0.8rem; color: var(--text-muted); }
.recharge-card ul li span { color: var(--accent); font-weight: 700; }

/* Distribution */
.distribution-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(4, 10, 20, 0.96), rgba(12, 20, 35, 0.96));
  box-shadow: inset 0 1px 0 rgba(124, 200, 255, 0.12);
}
.distribution-card__copy h3 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.distribution-card__copy p {
  color: var(--text-muted);
  margin: 0 0 1.1rem;
  line-height: 1.7;
}
.distribution-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.distribution-card__list li {
  padding: 0.8rem 0.95rem;
  border-left: 2px solid var(--accent-3);
  background: rgba(45, 124, 255, 0.08);
  color: var(--text);
}
.distribution-card__media {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border-accent);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.08), rgba(4, 10, 18, 0.95));
}
.distribution-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 18px 42px rgba(2, 5, 10, 0.45);
}
.distribution-card__video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.distribution-card__video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.distribution-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.distribution-card__video-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.45));
  pointer-events: none;
}
.distribution-card__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.distribution-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 200, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.distribution-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 0.4rem;
  box-shadow: 0 18px 42px rgba(2, 5, 10, 0.45);
}

/* Gallery */
.gallery {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, rgba(45,124,255,0.08), rgba(77,163,255,0.04));
}
.gallery__content { display: grid; gap: 2rem; grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.gallery__copy { max-width: 560px; }
.gallery__copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 1rem; text-transform: uppercase; font-weight: 900; }
.gallery__copy p { color: var(--text-muted); font-size: clamp(1.05rem, 1.15vw, 1.24rem); max-width: 560px; line-height: 1.8; }
.gallery__slider { position: relative; padding-top: 0.6rem; overflow: hidden; }
.gallery__track { position: relative; min-height: 520px; }
.gallery__slide { position: absolute; inset: 0; opacity: 0; transform: translateX(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.gallery__slide.active { opacity: 1; transform: translateX(0); }
.gallery__slide img { width: 100%; height: 520px; object-fit: cover; border: 2px solid var(--border-accent); border-radius: 1.25rem; }
.gallery__caption { margin-top: 1rem; color: var(--text-muted); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.gallery__controls { display: flex; gap: 1rem; margin-top: 1.5rem; align-items: center; justify-content: center; }
.slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(45, 124, 255, 0.18);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}
.slider-button:hover { background: rgba(45, 124, 255, 0.55); color: #fff; }
.gallery__counter { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.1em; margin: 0 1rem; }

/* Zones */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.zone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s ease;
}
.zone-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(242, 228, 55, 0.08); }
.zone-card__icon { font-size: 2rem; margin-bottom: 0.8rem; }
.zone-card h3 { font-size: 1rem; text-transform: uppercase; margin: 0.5rem 0; font-weight: 700; letter-spacing: 0.05em; }
.zone-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* Location */
.location-map {
  position: relative;
  border-radius: 1.5rem;
  margin-top: 2.5rem;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(124, 200, 255, 0.18);
  background: radial-gradient(circle at top left, rgba(124, 200, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(4, 9, 19, 0.96), rgba(10, 17, 35, 0.72));
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 520px;
}
.location-map__marker {
  position: absolute;
  right: 2rem;
  bottom: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 3rem;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}
.location-map__marker-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.55rem;
}
.location-map__marker-label {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.location-map__overlay {
  position: absolute;
  left: 2rem;
  top: 2rem;
  right: 2rem;
  max-width: 540px;
  padding: 2rem;
  border-radius: 1.2rem;
  background: rgba(5, 10, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 1rem;
}
.location-map__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.location-map__title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 900;
}
.location-map__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  max-width: 520px;
}
.location-map__button {
  width: fit-content;
  margin-top: 0.5rem;
  padding: 1rem 1.8rem;
}
.location-map__button:hover {
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 4rem 2rem 3rem;
  border-top: 2px solid rgba(45,124,255,0.65);
  background: radial-gradient(circle at top left, rgba(45,124,255,0.16), transparent 30%), rgba(0, 0, 0, 0.98);
}
.footer__column { min-width: 0; }
.footer__column .eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-3);
  font-weight: 700;
}
.footer__column a {
  color: #fff;
  display: block;
  margin-top: 0.45rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer__column a:hover {
  color: var(--accent);
  transform: translateX(2px);
}
.footer__column p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link,
.social-square {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.social-link:hover,
.social-square:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
}
.social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}
.social-link__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-link--facebook,
.social-square--facebook,
.social-link--instagram,
.social-square--instagram,
.social-link--tiktok,
.social-square--tiktok {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
.social-link,
.social-square {
  border-width: 1px;
}




.footer__brand {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.72);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .gallery__content { grid-template-columns: 1fr; }
  .gallery__slide img { height: 320px; }
  .distribution-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .distribution-card__media { order: -1; padding: 0.75rem; }
  .hero__content { max-width: 100%; padding-right: 0; }
  .hero__meta { flex-direction: column; gap: 1rem; }
  .location-map { min-height: 420px; }
  .section-heading { margin-bottom: 2rem; }
  .games-grid { gap: 1rem; }
}

@media (max-width: 760px) {
  .site-header { padding: 1rem 1rem 0.9rem; border-bottom: 1px solid var(--border-accent); }
  .site-nav { gap: 0.75rem; font-size: 0.8rem; }
  .brand { font-size: 0.95rem; }
  .hero { padding: 3rem 0.85rem 2rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero__lead { font-size: 1rem; }
  .section, .gallery { padding: 2.5rem 0.8rem; }
  .button { padding: 0.85rem 1.2rem; font-size: 0.8rem; }
  .games-grid { gap: 0.9rem; }
  .games-search { gap: 0.5rem; }
  .distribution-card { grid-template-columns: 1fr; gap: 0.9rem; padding: 1.2rem; }
  .distribution-card__media { padding: 0.75rem; }
  .distribution-card__copy h3 { font-size: 1.35rem; }
  .gallery__content { gap: 1.2rem; }
  .gallery__slide img { height: 240px; }
  .gallery__caption { margin-top: 0.8rem; }
  .gallery__controls { gap: 0.8rem; margin-top: 1rem; }
  .slider-button { width: 44px; height: 44px; font-size: 1.05rem; }
  .gallery__counter { margin: 0 0.75rem; }
  .zones-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .location-map__overlay { left: 1rem; top: 1rem; right: 1rem; padding: 1rem; }
  .location-map__title { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .location-map__button { width: 100%; justify-self: stretch; }
}

@media (min-width: 1400px) {
  .hero { padding: 6rem 6rem 4rem; }
  .hero__content { max-width: 1000px; }
  .gallery__slide img { height: 520px; }
}
