@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-cyr-700.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-latin-ext-700.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-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+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex-cyr-400.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex-latin-ext-400.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex-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: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plex-cyr-600.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plex-latin-ext-600.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plex-latin-600.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 {
  --paper: #f3ede3;
  --ink: #1c1916;
  --muted: #5c534c;
  --teal: #0b5f63;
  --teal-deep: #083e42;
  --copper: #a33b24;
  --brass: #b8923a;
  --line: #d7cbb8;
  --card: #fffaf2;
  --white: #fffdf8;
  --focus: #0b5f63;
  --header: 76px;
  --container: 1080px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}

*,
*::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.7;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(28, 25, 22, 0.015) 0 1px, transparent 1px 28px),
    var(--paper);
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: var(--teal);
  color: var(--white);
  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(--ink);
}

h1 { font-size: clamp(2.1rem, 4.6vw, 4.1rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); margin: 0 0 1rem; max-width: 16ch; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin: 1.4rem 0 0.6rem; color: var(--teal-deep); }

p { margin: 0 0 1rem; color: var(--muted); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 3px double var(--teal);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.geo {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--copper);
  color: var(--copper);
}

.desktop {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0.85rem;
  overflow: auto;
}

.desktop a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.desktop a:hover { color: var(--ink); }

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

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
}

.lang a {
  min-width: 42px;
  min-height: 36px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
}

.lang a[aria-current="page"] {
  background: var(--teal);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--teal);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.btn-primary { background: var(--copper); border-color: var(--copper); color: var(--white); }
.btn-primary:hover { background: #8b2f1c; }

.btn-ghost { background: transparent; color: var(--teal-deep); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }

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

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.2rem) 0 3rem;
  align-items: end;
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }

.hero-aside {
  min-height: 240px;
  padding: 1.4rem;
  background: var(--teal-deep);
  color: var(--white);
  display: grid;
  align-content: space-between;
}

.hero-aside p { color: #d7efe8; margin: 0; }
.hero-aside strong { font-family: var(--serif); font-size: 2.4rem; color: var(--brass); }

.section { padding-bottom: 2.6rem; }

.banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 160px;
  padding: 1.2rem 6vw;
  color: var(--white);
  background: var(--teal-deep);
}

.banner-about { background: #0b5f63; }
.banner-advantages { background: #1f4a3a; }
.banner-bonuses { background: #7a2e1c; }
.banner-slots { background: #12343a; }
.banner-live { background: #3d2a16; }
.banner-payments { background: #0e4a6b; }
.banner-sports { background: #1f4a3a; }
.banner-mobile { background: #2a2140; }
.banner-support { background: #0b5f63; }
.banner-license { background: #3d2a16; }

.num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--brass);
}

.banner-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
}

.banner svg { width: min(28vw, 220px); justify-self: end; }

.body { padding-top: 1.6rem; }

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

.card {
  padding: 1.1rem 1.1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
}

.card h3 { margin: 0 0 0.45rem; color: var(--ink); font-size: 1.2rem; }
.card p { margin: 0; }

.samples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.samples li {
  padding: 0.45rem 0.8rem;
  border: 1px dashed var(--brass);
  background: var(--white);
}

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

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

.faq {
  margin-bottom: 0.55rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.faq summary { cursor: pointer; font-weight: 600; }

.form {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.form label { display: grid; gap: 0.3rem; }

.form input,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.form input:user-invalid,
.form textarea:user-invalid { border-color: var(--copper); }

.footer {
  padding: 2rem 0 2.4rem;
  border-top: 3px double var(--teal);
  background: var(--white);
}

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

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

@media (max-width: 768px) {
  .hero, .layout, .grid { grid-template-columns: 1fr; }
  .banner { grid-template-columns: auto 1fr; min-height: 130px; }
  .banner svg { display: none; }
}

.toc {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto 2rem;
  padding: 1.1rem 1.2rem;
  background: var(--white, #fff);
  border: 1px solid var(--teal, #0b5f63);
}
.toc h2 { margin: 0 0 0.7rem; font-size: 1.1rem; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc a { color: var(--teal, #0b5f63); text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.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 #d7cfc2;
  text-align: left;
  vertical-align: top;
}
.table th { background: var(--teal, #0b5f63); color: #fff; }
.list { margin: 0 0 1rem; padding-left: 1.2rem; }
.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; }
}
