:root {
  --ink: #f8fafc;
  --ink-dark: #111827;
  --muted: #a7b0c2;
  --muted-dark: #5b667a;
  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(17, 24, 39, .12);
  --card: rgba(12, 18, 32, .74);
  --card-solid: #ffffff;
  --red: #e11d48;
  --red-soft: rgba(225, 29, 72, .15);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, .18);
  --green: #22c55e;
  --offline: #ef4444;
  --dark: #0b1020;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #070b16;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.background-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, .26), transparent 18rem),
    radial-gradient(circle at 92% 16%, rgba(225, 29, 72, .18), transparent 19rem),
    radial-gradient(circle at 50% 112%, rgba(59, 130, 246, .24), transparent 25rem),
    linear-gradient(160deg, #070b16 0%, #0d1324 45%, #070b16 100%);
}
.background-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 0 44%, transparent 82%);
  opacity: .55;
}
.background-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent 40%, rgba(255,255,255,.025));
}

.hidden { display: none !important; }
.language-gate,
.page {
  width: min(calc(100% - 24px), 520px);
  margin: 0 auto;
}
.language-gate {
  min-height: 100vh;
  padding: 16px 0;
  display: grid;
  place-items: center;
}
.page {
  min-height: 100vh;
  padding: 8px 0 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.language-card {
  width: 100%;
  border-radius: 30px;
  padding: 24px;
}
.brand-home-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 128px;
  max-height: 38px;
  object-fit: contain;
}
.brand-logo-large {
  width: 184px;
  max-height: 56px;
  margin-bottom: 30px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 10.8vw, 56px);
  line-height: .91;
  letter-spacing: -.065em;
}
.lead {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.flag-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}
.flag-selector button {
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  color: var(--ink);
}
.flag-selector button:active { transform: scale(.96); }
.flag-selector button.is-selected {
  background: #ffffff;
  color: var(--ink-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.flag-selector-large {
  width: 100%;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
}
.flag-selector-large button {
  min-height: 54px;
  gap: 8px;
  font-weight: 950;
  background: rgba(255,255,255,.08);
}
.flag-selector-large span { font-size: 22px; }
.flag-selector-mini button {
  width: 36px;
  height: 32px;
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 90% 3%, rgba(34,211,238,.20), transparent 15rem),
    radial-gradient(circle at 0% 95%, rgba(225,29,72,.15), transparent 14rem);
  z-index: -1;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.event-mini {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .075em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--offline);
  box-shadow: 0 0 0 4px rgba(239,68,68,.16), 0 0 18px rgba(239,68,68,.55);
}
.status-dot.is-live {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.16), 0 0 18px rgba(34,197,94,.6);
}

.event-card {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}
.event-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.own-logo-box {
  width: 122px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  padding: 8px 11px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.own-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.live-chip {
  flex: 0 0 auto;
  max-width: 178px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(239,68,68,.12);
  color: #fecaca;
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .055em;
  text-align: center;
}
.live-chip.is-live { background: rgba(34,197,94,.14); color: #bbf7d0; }
.event-card strong { display: block; margin-bottom: 5px; font-size: 14px; color: var(--ink); }
.event-card span { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.35; }

.actions { display: grid; gap: 10px; }
.button {
  border: 0;
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-weight: 950;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:active { transform: scale(.985); }
.button-primary { background: var(--cyan); color: #04111d; box-shadow: 0 14px 36px rgba(34,211,238,.22); }
.button-secondary { background: rgba(255,255,255,.08); color: var(--ink); border: 1px solid var(--line); }

.logo-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.logo-tile {
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  min-height: 118px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.logo-tile span {
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.logo-tile img { object-fit: contain; display: block; }
.logo-tile-featured {
  grid-column: 1 / -1;
  min-height: 102px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
}
.logo-tile-featured span,
.logo-tile-dark span { color: rgba(255,255,255,.68); }
.logo-tile-dark { background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(34,211,238,.08)); }
.logo-tile-light {
  background: linear-gradient(135deg, #ffffff, #effaff);
  color: var(--ink-dark);
  border-color: rgba(255,255,255,.8);
}
.logo-tile-light span { color: var(--muted-dark); }
.logo-gamesir { width: 100%; max-width: 248px; max-height: 38px; align-self: flex-start; }
.logo-own { width: 100%; max-width: 138px; max-height: 42px; align-self: flex-start; }
.logo-oxygen { width: 100%; max-width: 132px; max-height: 64px; align-self: center; }

.section {
  border-radius: 26px;
  padding: 20px;
}
.section h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 27px;
  line-height: .98;
  letter-spacing: -.045em;
}
.section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.chips span {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
}
.links { display: grid; gap: 8px; margin-top: 14px; }
.links a {
  text-decoration: none;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: transform .18s ease, background .18s ease;
}
.links strong { font-size: 14px; color: var(--ink); }
.links span { color: var(--muted); font-size: 12px; font-weight: 800; text-align: right; }
.warning-note {
  margin: 0;
  padding: 0 4px 4px;
  color: rgba(248,250,252,.62);
  font-size: 11px;
  line-height: 1.35;
}
.warning-note strong { color: rgba(248,250,252,.86); }
.sticky-contact {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: min(496px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cyan);
  color: #04111d;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(34,211,238,.25);
  z-index: 10;
}
@media (hover: hover) {
  .button:hover, .links a:hover, .flag-selector button:hover, .logo-tile:hover { transform: translateY(-1px); }
  .logo-tile:hover { border-color: rgba(34,211,238,.38); box-shadow: 0 16px 42px rgba(34,211,238,.12); }
}
@media (max-width: 380px) {
  .brand-logo { width: 114px; max-height: 34px; }
  .brand-logo-large { width: 160px; }
  h1 { font-size: 36px; }
  .hero { padding: 18px; border-radius: 28px; }
  .event-brand { align-items: flex-start; flex-direction: column; }
  .own-logo-box { width: 116px; height: 42px; }
  .logo-gamesir { max-height: 34px; }
  .logo-own { max-width: 126px; max-height: 38px; }
  .logo-oxygen { max-width: 122px; max-height: 58px; }
}

.section-kicker {
  margin: 0 0 8px !important;
  color: var(--cyan) !important;
  font-size: 11px !important;
  font-weight: 950;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.b2b-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(34,211,238,.16), transparent 12rem),
    rgba(12, 18, 32, .78);
}
.section-cta {
  margin-top: 16px;
  width: 100%;
}

.contact-options {
  background:
    radial-gradient(circle at 0% 0%, rgba(34,211,238,.18), transparent 13rem),
    rgba(12, 18, 32, .82);
}
.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.button-whatsapp {
  background: #25d366;
  color: #04111d;
  border: 1px solid rgba(37, 211, 102, .7);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .16);
}
.contact-hint {
  margin: 12px 0 0 !important;
  color: rgba(248,250,252,.62) !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}


.microcopy {
  margin: 10px 0 0 !important;
  color: rgba(248,250,252,.74) !important;
  font-size: 12px !important;
  font-weight: 850;
}

.button-product {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #22d3ee 52%, #38bdf8 100%);
  color: #06111f;
  border: 0;
  box-shadow: 0 18px 44px rgba(34, 211, 238, .32);
}

.button-product::after {
  content: "OWN";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(6, 17, 31, .12);
  color: #06111f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}
.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-items: end;
  justify-items: center;
}
.product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, .68);
  backdrop-filter: blur(8px);
}
.product-sheet {
  position: relative;
  width: min(calc(100% - 20px), 540px);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 30px 30px 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12,18,32,.98), rgba(8,12,24,.98));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 -20px 80px rgba(0,0,0,.45);
}
.product-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.product-sheet h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.045em;
}
.product-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.product-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}
.product-list {
  display: grid;
  gap: 10px;
}
.product-row {
  width: 100%;
  text-align: left;
  color: inherit;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  padding: 10px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  cursor: pointer;
}
.product-row img {
  width: 84px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.product-row strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}
.product-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.product-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}
.product-platforms span {
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.18);
  color: rgba(248,250,252,.86);
  font-size: 10.5px;
  font-weight: 900;
}
.product-detail {
  margin-top: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.product-detail img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.product-detail h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.035em;
}
.product-detail p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.product-specs {
  display: grid;
  gap: 7px;
  margin: 12px 0;
}
.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(248,250,252,.86);
  font-size: 12px;
}
.product-specs span:first-child { color: var(--muted); }
.product-empty {
  padding: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.20);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.product-official-link {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 720px) {
  .product-drawer { align-items: center; }
  .product-sheet { border-radius: 30px; }
}

/* Product cards v12 */
.product-row {
  grid-template-columns: 104px 1fr;
  align-items: stretch;
}
.product-row-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-row img {
  width: 104px;
  height: 96px;
  background: radial-gradient(circle at top, rgba(255,255,255,.18), rgba(255,255,255,.06));
}
.product-more,
.product-back {
  appearance: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.product-more {
  width: fit-content;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(34,211,238,.16);
  border: 1px solid rgba(34,211,238,.28);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.product-back {
  margin-bottom: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.product-features {
  margin: 12px 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(34,211,238,.07);
  border: 1px solid rgba(34,211,238,.14);
}
.product-features > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(248,250,252,.84);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-features ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.product-features li + li { margin-top: 5px; }
@media (max-width: 380px) {
  .product-row { grid-template-columns: 92px 1fr; }
  .product-row img { width: 92px; height: 86px; }
}

.distributor-note {
  margin-top: 12px !important;
  color: rgba(226, 232, 240, .72) !important;
}

.distributor-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, .24);
  background: rgba(255, 255, 255, .055);
  display: grid;
  gap: 5px;
}

.distributor-card strong {
  color: var(--ink);
  font-size: 15px;
}

.distributor-card span {
  color: var(--muted);
  font-size: 13px;
}

.distributor-card a {
  color: var(--cyan);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.section-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.section-actions .section-cta {
  margin-top: 0;
}
