@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-cyr-700.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-latin-ext-700.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-cyr-400.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-latin-ext-400.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/nunito-cyr-700.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/nunito-latin-ext-700.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/nunito-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0c10;
  --panel: #12151c;
  --ivory: #f7f1e3;
  --muted: #c9c0ae;
  --gold: #c9a227;
  --wine: #6e1d2c;
  --line: rgba(201, 162, 39, 0.35);
  --focus: #c9a227;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Nunito Sans", system-ui, sans-serif;
  --container: 1040px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ivory);
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(110, 29, 44, 0.28), transparent 55%),
    var(--ink);
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
}
.skip:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ivory);
}
h1 { font-size: clamp(2rem, 4.8vw, 3.9rem); margin: 0 0 1rem; text-align: center; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.4rem); margin: 0 0 1rem; max-width: 18ch; }
h3 { font-size: 1.2rem; margin: 1.4rem 0 0.55rem; color: var(--gold); }
p { margin: 0 0 1rem; color: var(--muted); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 12, 16, 0.92);
  border-bottom: 1px solid var(--line);
}

.bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, 1320px);
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--gold);
}

.geo {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.4rem;
}

.desktop {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0.75rem;
  overflow: auto;
}
.desktop a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.desktop a:hover { color: var(--gold); }

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

.lang { display: inline-flex; border: 1px solid var(--line); }
.lang a {
  min-width: 40px;
  min-height: 34px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.72rem;
}
.lang a[aria-current="page"] { background: var(--wine); color: var(--ivory); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}
.btn:hover { background: var(--gold); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wine); border-color: var(--wine); color: var(--ivory); }
.btn-primary:hover { background: #8a2438; color: var(--ivory); }

.nav-toggle, .burger, .mobile { display: none; }

.hero {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.8rem) 0 3rem;
  text-align: center;
}

.ornament {
  width: 72px;
  height: 18px;
  margin: 0 auto 1.2rem;
  background:
    linear-gradient(90deg, transparent, var(--gold), transparent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.kicker {
  margin: 0 0 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
}

.lead { max-width: 62ch; margin-inline: auto; }
.cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.section { padding-bottom: 2.8rem; }

.banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(190px, 30vw, 300px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    repeating-conic-gradient(from 0deg at 50% 118%, rgba(201, 162, 39, 0.09) 0 8deg, transparent 8deg 16deg),
    radial-gradient(circle at 50% 120%, rgba(201, 162, 39, 0.2), transparent 52%),
    var(--panel);
}
.banner-about { background-color: #10131a; }
.banner-advantages { background-color: #141018; }
.banner-bonuses { background-color: #160f14; }
.banner-slots { background-color: #10161a; }
.banner-live { background-color: #161214; }
.banner-payments { background-color: #101614; }
.banner-sports { background-color: #12141a; }
.banner-mobile { background-color: #141218; }
.banner-support { background-color: #121018; }
.banner-license { background-color: #161410; }

.banner::before {
  content: "";
  position: absolute;
  inset: 18px 8vw;
  border: 1px solid var(--line);
  pointer-events: none;
}

.banner-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  color: var(--ivory);
}

.num {
  position: absolute;
  left: 8vw;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold);
  opacity: 0.7;
}

.banner svg {
  position: absolute;
  right: 8vw;
  width: min(26vw, 180px);
  opacity: 0.55;
}

.body { padding-top: 1.6rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.card {
  padding: 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.card h3 { margin: 0 0 0.45rem; color: var(--ivory); }
.card p { margin: 0; }

.samples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.samples li {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.gold { color: var(--gold); }

.layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 0.8rem;
}

.faq {
  margin-bottom: 0.55rem;
  padding: 0.85rem 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
}
.faq summary { cursor: pointer; color: var(--ivory); font-weight: 700; }

.form {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  background: var(--panel);
  border: 1px solid var(--line);
}
.form label { display: grid; gap: 0.3rem; color: var(--ivory); }
.form input, .form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--ivory);
}
.form input:user-invalid, .form textarea:user-invalid { border-color: #c45c6a; }

.footer {
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 1280px) {
  .desktop, .hide-sm { display: none; }
  .burger {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.7rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
  }
  .mobile {
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0 1rem 1rem;
  }
  .mobile a { text-decoration: none; color: var(--ivory); }
  .nav-toggle:checked ~ .mobile { display: flex; }
}

@media (max-width: 1024px) {
  .layout, .grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .banner svg { display: none; }
  .num { left: 1rem; }
}

.toc {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto 2rem;
  padding: 1.1rem 1.2rem;
  background: var(--panel, #12151c);
  border: 1px solid var(--line, rgba(201, 162, 39, 0.35));
}
.toc h2 { margin: 0 0 0.7rem; font-size: 1.1rem; color: var(--gold, #c9a227); }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc a { color: var(--ivory, #f7f1e3); text-decoration: none; }
.toc a:hover { color: var(--gold, #c9a227); }
.lead { font-size: 1.05rem; }
.table-wrap { overflow-x: auto; margin: 0 0 1.1rem; }
.table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.table th, .table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line, rgba(201, 162, 39, 0.35));
  text-align: left;
  vertical-align: top;
}
.table th { background: #1a120f; color: var(--gold, #c9a227); }
.list { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted, #c9c0ae); }
.list li { margin: 0 0 0.4rem; }
.section-cta { margin: 1rem 0 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
