:root {
  --bg-deep: #06030c;
  --bg-mid: #12081f;
  --bg-card: rgba(36, 18, 62, 0.55);
  --accent-rose: #ff3d8a;
  --accent-violet: #a855f7;
  --accent-cyan: #5cffe7;
  --accent-warm: #ffb84d;
  --text: #f5f0ff;
  --text-muted: #b9a8d4;
  --border: rgba(168, 85, 247, 0.35);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -40%, rgba(168, 85, 247, 0.22), transparent),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(255, 61, 138, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(92, 255, 231, 0.08), transparent);
  line-height: 1.6;
  overflow-x: clip;
}

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

.game-card-visual img,
.live-game-visual img {
  height: 100%;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--accent-rose);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 3, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem max(1rem, env(safe-area-inset-right, 0px)) 0.65rem max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo-link img {
  height: 34px;
  width: auto;
  max-height: 34px;
  object-fit: contain;
}

.nav-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.4rem;
}

.nav-main a {
  color: var(--text);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-main a:hover {
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent-cyan);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-violet) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 61, 138, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(168, 85, 247, 0.45);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent-violet);
  box-shadow: 0 0 24px rgba(92, 255, 231, 0.12);
}

.btn-outline:hover {
  background: rgba(168, 85, 247, 0.15);
  text-decoration: none;
  color: var(--accent-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  line-height: 0;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-cyan));
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    flex-shrink: 0;
    order: 2;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo-link {
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    order: 3;
    flex-shrink: 0;
  }

  .header-actions .btn {
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .nav-main {
    display: none;
    order: 4;
    flex-basis: 100%;
    position: relative;
    flex-direction: column;
    background: var(--bg-mid);
    padding: 0.75rem 0 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main a {
    padding: 0.75rem 1rem;
    white-space: normal;
  }
}

.hero {
  padding: 2.75rem max(1rem, env(safe-area-inset-right, 0px)) 3rem max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 61, 138, 0.15);
  border: 1px solid rgba(255, 61, 138, 0.4);
  color: var(--accent-warm);
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(1.35rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff 0%, var(--accent-cyan) 50%, var(--accent-rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-lead {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 800;
  color: var(--accent-warm);
  margin: 0 0 1.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero .btn-primary,
.hero .btn-outline {
  padding: 0.85rem 1.4rem;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  text-align: center;
  line-height: 1.25;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(1.25rem, env(safe-area-inset-right, 0px)) 3rem max(1.25rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.section {
  padding: 2.5rem 0;
  text-align: left;
  min-width: 0;
  max-width: 100%;
}

.section-alt {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  margin-left: calc(-1 * max(1.25rem, env(safe-area-inset-left, 0px)));
  margin-right: calc(-1 * max(1.25rem, env(safe-area-inset-right, 0px)));
  padding: 2.5rem max(1.25rem, env(safe-area-inset-left, 0px)) 2.5rem max(1.25rem, env(safe-area-inset-right, 0px));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(1.2rem, 3.2vw, 1.75rem);
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.section h2.accent-line {
  padding-bottom: 0.6rem;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-rose), var(--accent-violet), var(--accent-cyan)) 1;
}

.section h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  margin: 1.75rem 0 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  max-width: min(70ch, 100%);
  overflow-wrap: break-word;
}

.section p strong {
  color: var(--text);
}

.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

.list-check,
.list-dot {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  max-width: min(65ch, 100%);
}

.list-check li,
.list-dot li {
  margin-bottom: 0.45rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1.15rem;
  margin-top: 1.5rem;
  width: 100%;
  min-width: 0;
}

.game-card {
  background: rgba(18, 8, 31, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
}

.game-card-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-mid);
}

.game-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 1rem;
  text-align: center;
}

.game-card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
}

.game-card-body p {
  font-size: 0.88rem;
  margin: 0 0 0.65rem;
  max-width: none;
}

.stats-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.stats-inline .stat-pill {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border);
}

.stats-inline .stat-pill strong {
  display: block;
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-inline .stat-pill span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.data-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.data-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  color: var(--accent-warm);
  font-weight: 700;
}

.data-table td {
  color: var(--text-muted);
}

.quote-outro {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--accent-violet);
  background: rgba(168, 85, 247, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-banner {
  margin: 2rem 0;
  padding: 2rem max(1rem, env(safe-area-inset-right, 0px)) 2rem max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(255, 61, 138, 0.2), rgba(92, 255, 231, 0.08));
  border: 1px solid var(--border);
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.cta-banner h2 {
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer {
  background: #030108;
  border-top: 1px solid var(--border);
  padding: 2.25rem max(1.25rem, env(safe-area-inset-right, 0px)) max(2.25rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
  margin-top: 2rem;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: clip;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: min(68ch, 100%);
  overflow-wrap: break-word;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 3rem;
  text-align: left;
}

.legal-page h1 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.form-card {
  max-width: 440px;
  width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-card input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.form-card input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px rgba(92, 255, 231, 0.2);
}

.form-card .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  main.legal-page {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
  }

  .form-card {
    padding: 1.35rem max(1rem, env(safe-area-inset-right, 0px)) 1.35rem max(1rem, env(safe-area-inset-left, 0px));
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
