@font-face {
  font-family: "Maiola";
  src: url("/fonts/MaiolaCYR-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Maiola";
  src: url("/fonts/MaiolaCYR-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #071011;
  --panel: rgba(14, 24, 24, 0.92);
  --panel-edge: rgba(179, 207, 199, 0.18);
  --text: #e8ece9;
  --muted: #b6c1bd;
  --accent: #a9c8bd;
  --accent-bright: #d4e4de;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 17% 0%, rgba(73, 108, 99, 0.24), transparent 34rem),
    radial-gradient(circle at 93% 21%, rgba(94, 74, 54, 0.18), transparent 30rem),
    linear-gradient(155deg, #0c1717 0%, #071011 42%, #050a0b 100%);
  font-family: "Maiola", Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.025);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
  pointer-events: none;
}

.page-shell {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: 72px 0 104px;
}

.faq-header {
  margin-bottom: 42px;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(440px, 76vw);
  height: auto;
  margin: 0 auto 34px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.title-rule {
  width: 58px;
  height: 1px;
  margin: 0 auto 22px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(169, 200, 189, 0.45);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: #f4f6f4;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.08;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--panel-edge);
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.faq-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  padding: 42px 46px 44px;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--panel-edge);
}

.faq-number {
  padding-top: 5px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

h2 {
  margin-bottom: 20px;
  color: #f2f4f2;
  font-size: clamp(23px, 2.7vw, 31px);
  font-weight: 700;
  line-height: 1.34;
}

.faq-copy p {
  margin-bottom: 14px;
  color: var(--muted);
}

.faq-copy p:last-child,
.faq-copy ul:last-child {
  margin-bottom: 0;
}

.faq-copy a {
  color: var(--accent-bright);
  text-decoration-color: rgba(212, 228, 222, 0.48);
  text-underline-offset: 0.2em;
}

.faq-copy a:hover,
.faq-copy a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.faq-copy a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.account-link {
  padding-top: 3px;
  font-size: 0.94em;
}

.platform-list,
.region-list {
  margin: 12px 0 18px;
  padding-left: 1.2em;
  color: var(--muted);
}

.platform-list > li {
  margin: 8px 0;
  padding-left: 0.25em;
}

.platform-list > li::marker {
  color: var(--accent);
}

.region-list {
  margin: 9px 0 12px;
  padding-left: 1.35em;
  font-size: 0.96em;
}

.region-list li {
  margin: 7px 0;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .page-shell {
    width: min(100% - 28px, 640px);
    padding: 42px 0 64px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .brand-logo {
    margin-bottom: 26px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 30px 24px 34px;
  }

  .faq-number {
    padding-top: 0;
  }

  h2 {
    margin-bottom: 17px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .faq-list {
    background: #0e1818;
    backdrop-filter: none;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #111;
    background: #fff;
  }

  body::before {
    display: none;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .brand-logo {
    filter: invert(1);
  }

  .faq-list {
    border-color: #bbb;
    background: #fff;
    box-shadow: none;
  }

  .faq-item,
  .faq-item + .faq-item {
    border-color: #ccc;
    break-inside: avoid;
  }

  h1,
  h2,
  .faq-copy p,
  .platform-list,
  .region-list {
    color: #111;
  }
}
