:root {
  --bg: #040a08;
  --bg-soft: #07110d;
  --surface: #082218;
  --surface-2: #0d3022;
  --surface-3: #123d2b;
  --gold: #d9aa4b;
  --gold-light: #f3d995;
  --text: #fff8e7;
  --muted: #b8c8bf;
  --line: rgba(217, 170, 75, .38);
  --line-soft: rgba(255, 255, 255, .08);
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --radius: 24px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 18%, rgba(18, 78, 54, .2), transparent 28rem),
    radial-gradient(circle at 90% 58%, rgba(217, 170, 75, .08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #06150f;
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 10, 7, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.brand span {
  margin-right: 2px;
  color: var(--gold);
  font-size: 2.2rem;
}

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  place-content: center;
  gap: 5px;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.primary-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #071b13;
  box-shadow: var(--shadow);
}

.primary-nav[hidden] {
  display: none;
}

.primary-nav a {
  min-height: 48px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-light);
  background: rgba(217, 170, 75, .08);
}

.site-header .header-cta {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 25px;
  color: #08110d;
  border: 1px solid #f6d98f;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4d886, #c99532);
  box-shadow:
    inset 0 1px rgba(255,255,255,.55),
    0 14px 34px rgba(201, 149, 50, .17);
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px rgba(255,255,255,.55),
    0 18px 42px rgba(201, 149, 50, .28);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

.button-ghost {
  color: var(--gold-light);
  border-color: var(--line);
  background: rgba(5, 30, 20, .74);
  box-shadow: none;
}

.register-cta {
  min-height: 48px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #020704;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 66% center;
  opacity: .7;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2,7,4,.98) 0%, rgba(2,7,4,.82) 48%, rgba(2,7,4,.28) 100%),
    linear-gradient(0deg, rgba(2,7,4,.88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  padding-block: 92px 150px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link {
  min-height: 48px;
  padding: 12px 4px;
  color: var(--gold-light);
  font-weight: 750;
}

.hero-note {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

.hero-note span,
.age-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 850;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: -88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(9, 48, 32, .98), rgba(5, 25, 18, .98));
  box-shadow: var(--shadow);
}

.trust-strip > div {
  display: flex;
  min-height: 96px;
  padding: 18px 20px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line-soft);
}

.trust-strip > div:last-child {
  border-bottom: 0;
}

.trust-strip p {
  margin: 0;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  color: var(--gold-light);
}

.trust-strip small {
  margin-top: 3px;
  color: var(--muted);
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 1.45rem;
}

.section {
  padding-block: 84px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.category-section {
  padding-block: 24px 34px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 210px;
  overflow: hidden;
  padding: 18px 16px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #06140e;
  box-shadow:
    inset 0 1px rgba(255,255,255,.06),
    0 18px 36px rgba(0, 0, 0, .22);
  font-weight: 800;
  isolation: isolate;
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 10, 7, .72) 0%, rgba(2, 10, 7, .08) 38%, rgba(2, 10, 7, .22) 58%, rgba(2, 10, 7, .88) 100%),
    linear-gradient(90deg, rgba(2, 10, 7, .22), transparent 60%);
}

.category-card::after {
  position: absolute;
  inset: 5px;
  z-index: 1;
  border: 1px solid rgba(243, 217, 149, .1);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.035);
}

.category-label,
.round-arrow {
  position: relative;
  z-index: 2;
}

.category-label {
  color: var(--gold-light);
  font-size: 1.02rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .9);
}

.round-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(2, 12, 8, .72);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.round-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-section,
.safety-section,
.topic-section,
.related-articles {
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 0, rgba(23, 77, 54, .23), transparent 30rem),
    var(--bg-soft);
}

.reason-grid,
.safety-grid {
  display: grid;
  gap: 14px;
}

.reason-grid article,
.safety-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(13, 48, 34, .8), rgba(6, 20, 14, .82));
}

.reason-grid article > span,
.safety-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 850;
}

.reason-grid h3,
.safety-grid h3 {
  margin-bottom: 10px;
}

.reason-grid p,
.safety-grid p {
  margin-bottom: 0;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 10, 6, .98), rgba(3, 14, 9, .28)),
    url("/assets/images/hero-casino.webp") center / cover;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0,0,0,.4);
}

.feature-card > div {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.feature-sports {
  background:
    linear-gradient(90deg, rgba(3, 16, 10, .96), rgba(4, 28, 17, .55)),
    radial-gradient(circle at 75% 50%, rgba(217,170,75,.28), transparent 14rem),
    repeating-linear-gradient(90deg, #0a3d26 0 1px, transparent 1px 60px),
    linear-gradient(145deg, #0c2f21, #05100b);
}

.steps-section {
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 170, 75, .08), transparent 26rem),
    #040b08;
}

.steps {
  display: grid;
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 31, 21, .65);
}

.steps article > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--surface);
  font-size: 1.5rem;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.action-row {
  margin-top: 32px;
}

.device-section {
  display: grid;
  align-items: center;
  gap: 50px;
}

.phone-mockup {
  position: relative;
  width: min(280px, 78vw);
  aspect-ratio: .52;
  margin-inline: auto;
  padding: 10px;
  border: 2px solid var(--gold);
  border-radius: 42px;
  background: linear-gradient(145deg, #1c3328, #030805);
  box-shadow:
    0 36px 80px rgba(0,0,0,.5),
    20px 20px 70px rgba(217,170,75,.08);
  transform: rotate(-5deg);
}

.phone-mockup::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 90px;
  height: 20px;
  content: "";
  border-radius: 0 0 16px 16px;
  background: #020403;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 40px 14px 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 25%, rgba(217,170,75,.24), transparent 8rem),
    #06170f;
}

.mini-brand {
  color: var(--gold-light);
  font-weight: 900;
}

.mini-hero {
  height: 34%;
  margin-block: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(transparent, rgba(3,10,7,.9)),
    url("/assets/images/hero-casino-mobile.webp") center / cover;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mini-cards span {
  aspect-ratio: .8;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
}

.mini-button {
  height: 38px;
  margin-top: 14px;
  border-radius: 12px;
  background: linear-gradient(#f3d995, #bd8a2e);
}

.device-copy h2 {
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  color: var(--text);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(9, 40, 27, .58);
}

.check-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--gold-light);
  content: "✓";
  transform: translateY(-50%);
}

.inline-link {
  margin-top: 28px;
}

.inline-link a {
  color: var(--gold-light);
  font-weight: 750;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 31, 21, .68);
}

.faq-grid summary {
  position: relative;
  min-height: 56px;
  padding: 16px 50px 16px 18px;
  cursor: pointer;
  color: var(--text);
  font-weight: 750;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--gold-light);
  content: "+";
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin: 0;
  padding: 0 18px 18px;
}

.responsible {
  display: flex;
  margin-bottom: 84px;
  padding: 24px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(10,47,31,.8), rgba(5,20,14,.9));
}

.responsible h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.responsible p {
  margin: 0;
}

.final-cta {
  padding-block: 54px;
  border-block: 1px solid var(--gold);
  background:
    radial-gradient(circle at 15% 50%, rgba(217,170,75,.2), transparent 20rem),
    linear-gradient(120deg, #0d3b29, #06150f);
}

.final-cta .shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.site-footer {
  padding: 64px 0 110px;
  background: #020604;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h2 {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid a:not(.brand) {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  border-top: 1px solid var(--line-soft);
}

.footer-bottom p {
  margin: 0;
  font-size: .82rem;
}

.mobile-register {
  position: fixed;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  z-index: 90;
  display: flex;
  min-height: 54px;
  padding: 12px 22px;
  align-items: center;
  justify-content: space-between;
  color: #08110d;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  background: linear-gradient(180deg, #efd27f, #c38f30);
  box-shadow: 0 18px 45px rgba(0,0,0,.48);
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .84rem;
}

.breadcrumbs a:last-child {
  color: var(--gold-light);
}

.subpage-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  padding-block: 70px 150px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 12, 8, .96), rgba(3, 12, 8, .68)),
    url("/assets/images/hero-casino.webp") 70% center / cover;
}

.subpage-hero::after,
.article-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, var(--bg), transparent 55%);
}

.subpage-hero .shell,
.article-hero .shell {
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
}

.subpage-hero .shell > p:last-child {
  max-width: 700px;
  font-size: 1.08rem;
}

.list-layout {
  display: grid;
  gap: 28px;
}

.featured-article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(11, 48, 32, .86), rgba(4, 15, 10, .92));
}

.featured-visual {
  display: grid;
  min-height: 220px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(217,170,75,.26), transparent 36%),
    linear-gradient(145deg, #0c3b27, #040d09);
}

.featured-visual span {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 4rem;
}

.featured-article > div:last-child {
  padding: 26px;
}

.featured-article h2 {
  font-size: clamp(1.65rem, 4vw, 2.3rem);
}

.featured-article h2 a:hover,
.featured-article h2 a:focus-visible {
  color: var(--gold-light);
}

.article-kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.list-aside,
.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 31, 21, .72);
}

.list-aside h2,
.sidebar-card h2 {
  font-size: 1.45rem;
}

.list-aside .button,
.sidebar-card .button {
  width: 100%;
  margin-top: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-grid a {
  display: flex;
  min-height: 110px;
  padding: 18px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 37, 25, .7);
  font-weight: 800;
}

.related-grid span {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.article-hero {
  padding-bottom: 96px;
}

.article-hero-grid {
  display: grid;
  align-items: center;
  gap: 36px;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6vw, 4.4rem);
}

.article-lead {
  max-width: 760px;
  font-size: 1.13rem;
}

.article-meta {
  margin-bottom: 0;
  color: var(--gold-light);
  font-size: .82rem;
}

.article-hero-visual {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 31, 20, .74);
}

.article-hero-visual span {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 4.5rem;
}

.article-layout {
  display: grid;
  gap: 32px;
}

.article-content {
  min-width: 0;
}

.quick-answer,
.toc {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 38, 25, .62);
}

.quick-answer p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.toc h2 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.toc ol {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 8px;
  color: var(--gold-light);
}

.article-content > section {
  scroll-margin-top: 100px;
}

.article-content > section + section {
  margin-top: 48px;
}

.article-content > section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.article-content > section p,
.article-content > section li {
  color: #c9d5ce;
  font-size: 1.04rem;
}

.article-content > section ul {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.article-content > section li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-left: 2px solid var(--gold);
  background: rgba(11, 44, 30, .5);
}

.article-content > section li::before {
  position: absolute;
  left: 16px;
  color: var(--gold-light);
  content: "✓";
}

.article-warning {
  display: flex;
  margin-top: 48px;
  padding: 24px;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(45, 31, 10, .5), rgba(8, 34, 23, .74));
}

.article-warning h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.article-warning p {
  margin: 0;
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.sidebar-card > a:not(.button) {
  display: block;
  padding-block: 10px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--line-soft);
}

.related-article-grid {
  display: grid;
  gap: 14px;
}

.related-article-grid a {
  display: grid;
  min-height: 130px;
  padding: 22px;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 37, 25, .7);
}

.related-article-grid span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.not-found {
  display: flex;
  min-height: 72vh;
  padding-block: 110px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.12rem;
}

@media (min-width: 640px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip > div {
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
  }

  .trust-strip > div:last-child {
    border-right: 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-card {
    min-height: 245px;
    padding: 20px 18px;
  }

  .reason-grid,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta .shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .featured-article {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) 1.4fr;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-hero-grid {
    grid-template-columns: 1.5fr .7fr;
  }

  .related-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-card {
    min-height: 190px;
    padding: 15px 12px;
  }

  .category-label {
    font-size: .88rem;
  }
}

@media (min-width: 960px) {
  .header-inner {
    min-height: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav,
  .primary-nav[hidden] {
    position: static;
    display: flex;
    margin-left: auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    min-height: auto;
    padding: 10px 9px;
    border: 0;
    font-size: .85rem;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .hero-media img {
    object-position: center;
  }

  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .category-card {
    min-height: 260px;
    padding: 20px 18px;
  }

  .category-label {
    font-size: 1.02rem;
  }

  .reason-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reason-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card {
    min-height: 420px;
    padding: 44px;
  }

  .device-section {
    grid-template-columns: .8fr 1.2fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-bottom: 64px;
  }

  .mobile-register {
    display: none;
  }

  .list-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  }

  .list-aside {
    position: sticky;
    top: 110px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .55fr);
  }

  .article-sidebar {
    position: sticky;
    top: 110px;
  }

  .related-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
    padding-block: 88px 160px;
    justify-content: flex-end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(2,7,4,.99) 0%, rgba(2,7,4,.82) 56%, rgba(2,7,4,.22) 100%);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-block: 70px;
  }

  .category-section {
    padding-block: 24px 34px;
  }

  .category-card {
    min-height: 205px;
  }

  .responsible,
  .article-warning {
    align-items: flex-start;
  }

  .subpage-hero,
  .article-hero {
    padding-block: 54px 135px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
