/* ===== Токены темы ===== */
:root {
  --bg: #0a0b10;
  --bg-alt: #12141c;
  --card: #171923;
  --card-alt: #1d2029;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eceef5;
  --muted: #9298ab;
  --gold: #f5c451;
  --silver: #c9d3e0;
  --bronze: #d98a4b;
  --violet: #8b6bff;
  --green: #1fd8a4;
  --red: #ff5470;
  --cyan: #22d3ee;
  --cyan-deep: #0891b2;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(1200px 600px at 50% -10%, #1b1430 0%, var(--bg) 55%), var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Manrope", system-ui, sans-serif;
  margin: 0 0 0.5em;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Возрастная проверка ===== */
html.age-check #site-content {
  display: none;
}
html.age-check #age-gate {
  display: flex;
}

#age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 5, 10, 0.94);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal {
  position: relative;
  background: radial-gradient(120% 140% at 50% -20%, #251a3d 0%, #14101f 45%, #0a0b10 100%);
  border: 1px solid rgba(245, 196, 81, 0.3);
  border-radius: 28px;
  max-width: 440px;
  width: 100%;
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(139, 107, 255, 0.08), 0 30px 90px rgba(0, 0, 0, 0.7),
    0 0 70px -24px rgba(245, 196, 81, 0.45);
  overflow: hidden;
}

.age-modal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--gold), var(--violet));
  background-size: 200% 100%;
  animation: age-shimmer 6s ease-in-out infinite;
}

@keyframes age-shimmer {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

.age-modal > * {
  position: relative;
}

.age-ribbon {
  position: absolute;
  top: 18px;
  left: -38px;
  width: 150px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--red), #c22947);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.6);
}

.age-chip {
  width: 84px;
  height: 84px;
  margin: 6px auto 16px;
  border-radius: 50%;
  padding: 7px;
  background: repeating-conic-gradient(var(--gold) 0deg 15deg, var(--violet) 15deg 30deg);
  box-shadow: 0 0 0 6px rgba(10, 11, 16, 0.6), 0 0 30px -6px rgba(245, 196, 81, 0.7);
}

.age-chip span {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #100c1a;
  border: 1px dashed rgba(245, 196, 81, 0.5);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
}

.age-crypto-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.age-crypto-row span {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(245, 196, 81, 0.1);
  border: 1px solid rgba(245, 196, 81, 0.28);
  padding: 4px 10px;
  border-radius: 999px;
}

.age-modal h2 {
  font-size: 21px;
  color: var(--text);
}

.age-modal h2 .age-brand {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.age-modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.age-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.age-actions .btn {
  flex: 1;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  color: #150e07;
  box-shadow: 0 10px 24px -8px rgba(139, 107, 255, 0.55);
}

.age-fine {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
}

/* ===== Кнопки ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffdd8a);
  color: #1a1200;
  box-shadow: 0 10px 24px -8px rgba(245, 196, 81, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  width: 100%;
  margin: 18px 0 10px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

/* ===== Хедер ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span.dot {
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

.header-ticker {
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.header-ticker .t-icon {
  color: var(--gold);
  margin-right: 4px;
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 40px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(139, 107, 255, 0.15);
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats div {
  text-align: center;
}

.hero-stats b {
  display: block;
  font-size: 22px;
  color: var(--gold);
  font-family: "Unbounded", sans-serif;
}

.hero-stats span {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Секции ===== */
.section {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.section-title h2 {
  font-size: 24px;
}

.section-title p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ===== Рейтинг: сетка фишек ===== */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}

.chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.chip:hover {
  transform: translateY(-6px);
}

.chip-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.chip-rank {
  align-self: flex-start;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--card-alt);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.chip-circle-wrap {
  position: relative;
  margin-bottom: 14px;
}

/* Круглая "фишка" казино с полосатым ободом, как настоящая покерная фишка */
.chip-circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-circle.tier-gold {
  background: repeating-conic-gradient(var(--gold) 0deg 18deg, #241a05 18deg 36deg);
  box-shadow: 0 0 34px -6px rgba(245, 196, 81, 0.75);
}
.chip-circle.tier-silver {
  background: repeating-conic-gradient(var(--silver) 0deg 18deg, #22242c 18deg 36deg);
  box-shadow: 0 0 30px -8px rgba(201, 211, 224, 0.6);
}
.chip-circle.tier-bronze {
  background: repeating-conic-gradient(var(--bronze) 0deg 18deg, #241708 18deg 36deg);
  box-shadow: 0 0 30px -8px rgba(217, 138, 75, 0.6);
}
.chip-circle.tier-violet {
  background: repeating-conic-gradient(var(--violet) 0deg 18deg, #191626 18deg 36deg);
  box-shadow: 0 0 26px -8px rgba(139, 107, 255, 0.5);
}

.chip-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.chip-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-circle-inner.logo-fallback::after {
  content: attr(data-initials);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #1a1c24;
}

.chip-rating {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: linear-gradient(135deg, var(--gold), #ffdd8a);
  color: #1a1200;
  font-weight: 800;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg);
}

.chip-rating-lg {
  width: 54px;
  height: 54px;
  font-size: 16px;
}

.chip-name {
  font-size: 17px;
  margin-bottom: 6px;
}

.chip-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 12px;
  min-height: 48px;
}

.chip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.chip-tags span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--violet);
  background: rgba(139, 107, 255, 0.14);
  padding: 4px 9px;
  border-radius: 999px;
}

.chip-cta {
  width: 100%;
}

/* ===== Крипто-баланс ===== */
.balance-card {
  background: linear-gradient(160deg, var(--card-alt), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  max-width: 380px;
}

.balance-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
}

.balance-total {
  color: var(--green);
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
}

.balance-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.balance-row {
  display: grid;
  grid-template-columns: 28px 50px 1fr;
  align-items: center;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 12px;
}

.balance-icon {
  color: var(--gold);
  font-weight: 800;
}

.balance-code {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.balance-amount {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.balance-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: var(--muted);
}

/* ===== Слот-игра ===== */
.slot-card {
  background: linear-gradient(160deg, var(--card-alt), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.slot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.slot-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(31, 216, 164, 0.14);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.slot-reels {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.reel {
  width: 74px;
  height: 74px;
  background: #0d0e14;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.slot-stats {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.slot-message {
  text-align: center;
  min-height: 20px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.slot-actions {
  display: flex;
  gap: 10px;
}

.slot-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* ===== Двухколоночный блок баланс + игра ===== */
.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 760px) {
  .play-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Преимущества крипто-казино ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ===== Сравнительная таблица ===== */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  font-size: 13.5px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.compare-table thead th {
  color: var(--muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  background: var(--card-alt);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-rank {
  color: var(--muted);
  font-weight: 700;
}

.compare-rating {
  color: var(--gold);
  font-weight: 800;
  font-family: "Unbounded", sans-serif;
}

.compare-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.compare-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

.compare-thumb.tier-gold {
  background: repeating-conic-gradient(var(--gold) 0deg 18deg, #241a05 18deg 36deg);
}
.compare-thumb.tier-silver {
  background: repeating-conic-gradient(var(--silver) 0deg 18deg, #22242c 18deg 36deg);
}
.compare-thumb.tier-bronze {
  background: repeating-conic-gradient(var(--bronze) 0deg 18deg, #241708 18deg 36deg);
}
.compare-thumb.tier-violet {
  background: repeating-conic-gradient(var(--violet) 0deg 18deg, #191626 18deg 36deg);
}

.compare-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #f6f7fb;
}

.compare-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f6f7fb;
}

.compare-thumb.logo-fallback::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7fb;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  color: #1a1c24;
}

.compare-bonus {
  color: var(--muted);
  white-space: normal;
  max-width: 220px;
}

.compare-table .crypto-pills {
  flex-wrap: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
}

/* ===== Гид по криптовалютам ===== */
.crypto-coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.coin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px;
}

.coin-card .coin-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.coin-card .coin-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31, 216, 164, 0.14);
  color: var(--green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.coin-card b {
  font-size: 14px;
}

.coin-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}

.wallet-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wallet-steps li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
}

.wallet-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.14);
  color: var(--cyan);
  font-weight: 800;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
  padding: 14px 0 18px;
}

/* ===== Страница казино ===== */
.detail-header {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 0 10px;
}

.detail-circle-wrap {
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}

.detail-circle-wrap .chip-circle {
  width: 180px;
  height: 180px;
}

.detail-info {
  flex: 1;
  min-width: 280px;
}

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.detail-rank {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.detail-info h1 {
  font-size: 30px;
}

.detail-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.detail-rating-num {
  color: var(--muted);
  font-size: 13px;
  margin-left: 6px;
}

.detail-tags {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.detail-long {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.bonus-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(245, 196, 81, 0.1);
  border: 1px solid rgba(245, 196, 81, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  max-width: 480px;
}

.bonus-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}

.bonus-text {
  font-weight: 700;
  font-size: 14px;
}

.crypto-box {
  margin-bottom: 10px;
}

.crypto-label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.crypto-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.crypto-pill {
  background: rgba(31, 216, 164, 0.14);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}

.detail-disclaimer {
  font-size: 11px;
  color: var(--muted);
  max-width: 560px;
}

.detail-others {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.other-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.other-links a {
  font-size: 13px;
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.other-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.not-found {
  text-align: center;
  padding: 80px 0;
}

/* ===== О проекте ===== */
.prose {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
}

.prose h2 {
  color: var(--text);
  margin-top: 30px;
}

.prose ul {
  padding-left: 20px;
}

.prose li {
  margin-bottom: 8px;
}

.notice-box {
  background: rgba(255, 84, 112, 0.08);
  border: 1px solid rgba(255, 84, 112, 0.3);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 14px;
}

.notice-box b {
  color: var(--red);
}

/* ===== Футер ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  max-width: 900px;
  line-height: 1.6;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
}

/* ===== Плавное появление блоков при прокрутке (см. js/reveal.js) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
