/* Mobile-first, modern stack */
:root {
  --bg: #0a1628;
  --bg-card: #0f2137;
  --blue: #1a4d7a;
  --blue-light: #256399;
  --blue-bright: #2d7ab8;
  --text: #e8eef4;
  --text-muted: #9eb4c4;
  --accent: #3d9ae8;
  --radius: 12px;
  --space: clamp(1rem, 4vw, 1.5rem);
  --font: 'Manrope', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  min-height: 40px;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  max-width: 38%;
}
.logo img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}
.nav .btn {
  text-align: center;
  justify-content: center;
  padding: 0.32rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  min-width: 0;
  max-width: 100%;
  border-radius: 6px;
  line-height: 1.15;
}
.nav .btn-primary {
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
}
.nav a:hover { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  min-width: 6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
  border: none;
  cursor: pointer;
}
.btn-outline {
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(61,154,232,.15);
}
.btn-primary {
  background: var(--blue-bright);
  color: #fff;
  padding: 0.65rem 2.25rem;
}
.btn-primary:hover {
  background: var(--blue-light);
}

/* Main */
main {
  flex: 1;
  padding: var(--space) 1rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.3;
}
.lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.lead a {
  color: #6ec0ff;
  font-weight: 600;
  text-decoration: none;
}
.lead a:hover {
  color: #9dd4ff;
  text-decoration: underline;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.btn-hero {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-hero-slotozal {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-hero-slotozal:hover {
  background: rgba(61, 154, 232, 0.15);
}
.btn-hero-play {
  background: var(--blue-bright);
  color: #fff;
  border: 2px solid var(--blue-bright);
}
.btn-hero-play:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #fff;
}
.content-block {
  margin-bottom: 2rem;
}
.content-block p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}
.content-block p:last-child { margin-bottom: 0; }
.content-block ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
.content-block li { margin-bottom: 0.35rem; }

/* Tables */
.info-table h2,
.content-block h2 { margin-bottom: 1rem; }
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}
table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
th {
  font-weight: 600;
  color: var(--text);
  background: rgba(0,0,0,.2);
  width: 40%;
}
td { color: var(--text-muted); }
td a, .footer-copy a {
  color: var(--accent);
  text-decoration: none;
}
td a:hover, .footer-copy a:hover { text-decoration: underline; }
tr:last-child th, tr:last-child td { border-bottom: none; }
.row-group {
  font-weight: 600;
  color: var(--accent);
  background: rgba(61,154,232,.1);
  text-align: center;
}
.table-bonus th { width: auto; }
.table-bonus th:nth-child(1) { width: 25%; }
.table-bonus th:nth-child(2),
.table-bonus th:nth-child(3),
.table-bonus th:nth-child(4) { width: 25%; }

/* Footer */
.footer {
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: .8;
}

/* Desktop: show nav inline, hide burger */
@media (min-width: 768px) {
  .header {
    padding: var(--space) 1rem;
    min-height: auto;
    gap: 0.5rem;
  }
  .logo {
    max-width: none;
    flex-shrink: 0;
  }
  .logo img {
    height: 40px;
    max-width: 180px;
  }
  .nav {
    flex: none;
    gap: 0.75rem;
  }
  .nav .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
    max-width: none;
    border-radius: var(--radius);
    line-height: normal;
  }
  .nav .btn-primary {
    padding: 0.65rem 2.75rem;
  }
}

@media (max-width: 360px) {
  .header {
    padding: 0.3rem 0.4rem;
    gap: 0.25rem;
  }
  .logo img { height: 24px; }
  .nav .btn {
    font-size: 0.68rem;
    padding: 0.28rem 0.35rem;
  }
  .nav .btn-primary {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}

@media (min-width: 640px) {
  .table-wrap { margin-bottom: 1.25rem; }
  th { width: 35%; }
}
