:root {
  --bg: #081226;
  --card: #0E1F3E;
  --text: #EAF2FF;
  --muted: #B8C7E6;
  --blue: #1E6BFF;
  --blue2: #0B3AA8;
  --accent: #00E0FF;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 520px at 80% 0%, rgba(0,224,255,.18), transparent 50%),
              radial-gradient(900px 480px at 10% 20%, rgba(30,107,255,.22), transparent 55%),
              var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8,18,38,.7);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 220px;
  height: 48px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.nav a:hover { background: rgba(255,255,255,.06); color: var(--text); }

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-color: transparent;
  color: #051025;
}
.btn--primary:hover { filter: brightness(1.05); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.burger svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/1win_banner.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,38,.25), rgba(8,18,38,.92));
}
.hero__inner {
  position: relative;
  padding: 56px 0 42px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}
.hero__card {
  background: rgba(14,31,62,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 22px;
}
.hero h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  margin: 0 0 12px;
}
.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,18,38,.45);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}
.badge i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,224,255,.12);
}

.hero__aside {
  display: grid;
  gap: 14px;
}
.kpi {
  background: rgba(8,18,38,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.kpi strong {
  display: block;
  font-size: 18px;
}
.kpi span {
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

main {
  padding: 34px 0 64px;
}

.section {
  margin-top: 28px;
}
.section__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.section__title h2 {
  font-size: 22px;
  margin: 0;
}
.section__title p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.article {
  background: rgba(14,31,62,.40);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}
.article h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
.article p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 650;
}
.article p:last-child { margin-bottom: 0; }

.slots {
  margin-top: 22px;
}
.slots__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.slot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .10s ease, border-color .2s ease, background .2s ease;
}
.slot:hover {
  transform: translateY(-2px);
  border-color: rgba(0,224,255,.35);
  background: rgba(255,255,255,.05);
}
.slot__thumb {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: rgba(0,0,0,.18);
}
.slot__meta {
  padding: 10px 12px 12px;
}
.slot__meta strong {
  display: block;
  font-size: 14px;
}
.slot__meta span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.slot__cta {
  position: absolute;
  inset: auto 10px 10px auto;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(8,18,38,.65);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
  font-size: 12px;
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(14,31,62,.35);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
th, td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
th {
  position: sticky;
  top: 0;
  background: rgba(8,18,38,.92);
  font-size: 13px;
  letter-spacing: .02em;
}
td {
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
tr:hover td { color: var(--text); }

.notice {
  margin-top: 14px;
  color: rgba(234,242,255,.85);
  background: rgba(8,18,38,.55);
  border: 1px dashed rgba(0,224,255,.35);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 650;
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8,18,38,.55);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.footer__links a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.footer__links a:hover { color: var(--text); border-color: rgba(255,255,255,.18); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
  .nav { display: none; }
  .burger { display: inline-flex; }
}

@media (min-width: 760px) {
  .slots__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1040px) {
  .slots__grid { grid-template-columns: repeat(7, 1fr); }
}
