﻿:root {
  --bg: #1a1411;
  --bg-soft: #231a14;
  --surface: #2a1f18;
  --surface-soft: #35271d;
  --line: rgba(212, 170, 104, 0.3);
  --text: #f4e7cf;
  --muted: #c4ad87;
  --lime: #d6b166;
  --gold: #e3b465;
  --blue: #72b4b0;
  --pink: #c88567;
  --cyan: #8abfa8;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-lg: 0 20px 50px rgba(9, 5, 2, 0.56);
  --shadow-md: 0 12px 30px rgba(8, 4, 2, 0.48);
  --accent: var(--lime);
  --accent-soft: rgba(214, 177, 102, 0.25);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Onest", "Segoe UI", sans-serif;
  background:
    radial-gradient(90vw 60vw at 100% -8%, rgba(239, 172, 84, 0.18), transparent 60%),
    radial-gradient(66vw 54vw at 0% -15%, rgba(120, 75, 38, 0.28), transparent 58%),
    linear-gradient(170deg, #1a1411 0%, #261b15 50%, #120e0b 100%);
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.68s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.68s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.hfont {
  font-family: "Unbounded", "Onest", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(1280px, calc(100% - 22px));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(233, 188, 108, 0.7) 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 70%, rgba(155, 113, 70, 0.72) 0.6px, transparent 0.8px);
  background-size: 170px 170px, 220px 220px;
}

.topbar {
  padding: 18px 0 12px;
}

.topbar-inner {
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(37, 26, 18, 0.95), rgba(25, 18, 13, 0.98));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 9;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: block;
  border: 1px solid rgba(214, 171, 105, 0.36);
  background: #1e150f url("assets/drawn/amonbet-icon.png") center / cover no-repeat;
  box-shadow: 0 0 22px rgba(227, 180, 101, 0.28);
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-text strong {
  font: 800 0.95rem/1 "Unbounded", "Onest", sans-serif;
}

.brand-text small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(214, 170, 103, 0.42);
  background: rgba(47, 33, 23, 0.9);
  color: #f7ebd2;
  font-size: 1.08rem;
  cursor: pointer;
}

.main-nav {
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 39px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  color: #e8d5b5;
  display: inline-flex;
  align-items: center;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 52%, #7a5630 48%);
  background: rgba(76, 50, 30, 0.76);
}

.actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.search,
.login {
  min-height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(212, 169, 102, 0.36);
  background: rgba(48, 34, 24, 0.92);
  color: #f4e9d1;
  font: 700 0.95rem/1 "Onest", sans-serif;
  padding: 0 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search {
  width: 42px;
  padding: 0;
  font-size: 1.02rem;
}

main {
  padding-bottom: 110px;
  display: grid;
  gap: 16px;
}

.one-page-main {
  gap: 22px;
}

.one-page-view {
  scroll-margin-top: 92px;
}

.one-page-view > .container {
  display: grid;
  gap: 16px;
}

.hero {
  margin-top: 8px;
  padding: clamp(18px, 2.6vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(96deg, rgba(27, 19, 14, 0.96) 0%, rgba(33, 23, 16, 0.92) 34%, rgba(33, 23, 16, 0.4) 66%, rgba(22, 16, 12, 0.92) 100%),
    radial-gradient(90% 100% at 100% 0%, rgba(222, 156, 69, 0.24), transparent 58%),
    radial-gradient(90% 100% at 0% 100%, rgba(110, 72, 39, 0.24), transparent 62%),
    linear-gradient(122deg, rgba(35, 25, 17, 0.98) 8%, rgba(30, 21, 15, 0.95) 48%, rgba(20, 14, 10, 0.92) 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: clamp(300px, 36vw, 450px);
}

.hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) right center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.label {
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  padding: 4px 12px;
  border: 1px solid rgba(214, 169, 100, 0.5);
  background: rgba(76, 49, 28, 0.7);
  color: #f4d7a3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.25rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 16px color-mix(in srgb, var(--accent) 35%, transparent 65%);
}

.hero h1 .brand-word {
  white-space: nowrap;
}

.hero h1 .brand-amon {
  color: #ffc736;
  text-shadow: 0 0 16px rgba(255, 199, 54, 0.45);
}

.hero h1 .brand-bet {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 10px 17px;
  font: 800 0.92rem/1 "Onest", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-main {
  color: #2c1e10;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 75%, white 25%), var(--accent));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 34%, transparent 66%);
}

.btn-main-gold {
  color: #2c1e10;
  background: linear-gradient(180deg, #f4ddb0, #dcb86e);
  box-shadow: 0 12px 24px rgba(220, 184, 110, 0.34);
}

.hero-bonus-btn {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bonus-pulse {
  animation: bonusPulse 1.85s ease-in-out infinite;
}

@keyframes bonusPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(220, 184, 110, 0.5),
      0 12px 24px rgba(220, 184, 110, 0.3);
  }

  55% {
    box-shadow:
      0 0 0 16px rgba(220, 184, 110, 0),
      0 16px 30px rgba(220, 184, 110, 0.2);
  }
}

.btn-ghost {
  color: #f5e8cf;
  border: 1px solid rgba(212, 168, 102, 0.34);
  background: rgba(54, 38, 25, 0.9);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.metric {
  border-radius: 11px;
  border: 1px solid rgba(208, 164, 97, 0.34);
  background: rgba(44, 32, 22, 0.78);
  padding: 8px 11px;
  min-width: 124px;
  display: grid;
  gap: 2px;
}

.metric strong {
  font-size: 1rem;
}

.metric span {
  color: #d7bf99;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(210, 168, 102, 0.3);
  background: linear-gradient(165deg, rgba(46, 33, 23, 0.95), rgba(28, 20, 14, 0.98));
  box-shadow: var(--shadow-md);
  padding: 13px;
}

.sect-head {
  margin-top: 6px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.sect-head h2,
.sect-head h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.8vw, 1.74rem);
  line-height: 1.12;
}

.sect-head a {
  color: #d8bf9b;
  font-weight: 700;
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  gap: 12px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel-card {
  border-radius: 14px;
  border: 1px solid rgba(209, 166, 99, 0.28);
  background: rgba(47, 34, 24, 0.84);
  overflow: hidden;
  display: grid;
  align-content: start;
}

.panel-card .media {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.panel-card .media img {
  height: 100%;
  object-fit: cover;
}

.panel-card .body {
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-card .body .btn {
  margin-top: auto;
}

.pill {
  width: fit-content;
  min-height: 23px;
  border-radius: 999px;
  padding: 3px 9px;
  border: 1px solid rgba(214, 170, 104, 0.36);
  background: rgba(74, 48, 28, 0.62);
  color: #ecd4ad;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}

.panel-card h3,
.panel-card h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.24;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
  gap: 13px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 11px;
}

.side {
  border-radius: 14px;
  border: 1px solid rgba(210, 167, 100, 0.28);
  background: linear-gradient(170deg, rgba(49, 35, 24, 0.96), rgba(30, 22, 15, 0.96));
  box-shadow: var(--shadow-md);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.side h3 {
  margin: 0;
  font-size: 1.06rem;
}

.side p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.44;
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.mini-list li {
  border-radius: 10px;
  border: 1px solid rgba(209, 166, 99, 0.26);
  background: rgba(45, 32, 22, 0.82);
  padding: 8px;
  display: grid;
  gap: 3px;
}

.mini-list strong {
  font-size: 0.9rem;
}

.mini-list span {
  color: #cfb894;
  font-size: 0.8rem;
}

.stats-table {
  border-radius: 12px;
  border: 1px solid rgba(210, 167, 100, 0.24);
  overflow: hidden;
  background: rgba(40, 29, 20, 0.72);
  display: grid;
  gap: 1px;
}

.stats-head,
.stats-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.85fr 0.8fr 0.8fr auto;
  gap: 8px;
  align-items: center;
  padding: 9px 11px;
  background: rgba(45, 32, 22, 0.92);
}

.stats-head {
  background: rgba(63, 44, 29, 0.95);
  color: #ecd6b2;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stats-row strong {
  font-size: 0.9rem;
}

.stats-row span {
  color: #d6bf9a;
  font-size: 0.84rem;
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 9px;
  padding: 0 10px;
  border: 1px solid rgba(212, 168, 100, 0.34);
  background: rgba(67, 46, 29, 0.84);
  color: #f4e8cf;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(211, 168, 102, 0.34);
  background: rgba(63, 43, 28, 0.86);
  padding: 0 10px;
  color: #ecd4ac;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 10px;
}

.feature-article .sect-head {
  margin-bottom: 12px;
}

.article-sheet {
  border-radius: 14px;
  border: 1px solid rgba(211, 168, 102, 0.3);
  background:
    radial-gradient(130% 120% at 100% 0%, color-mix(in srgb, var(--accent) 20%, transparent 80%), transparent 58%),
    rgba(45, 32, 22, 0.9);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.article-sheet-character {
  position: relative;
  overflow: hidden;
}

.article-sheet-character .article-top,
.article-sheet-character .article-prose {
  position: relative;
  z-index: 1;
  max-width: min(100%, calc(100% - 380px));
}

.article-character {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: clamp(240px, 27vw, 430px);
  pointer-events: none;
  user-select: none;
}

.article-character img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(8, 4, 2, 0.58));
}

.article-character-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  pointer-events: auto;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(56, 39, 26, 0.9);
  border-color: rgba(216, 176, 111, 0.44);
}

.article-top {
  display: grid;
  gap: 8px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(210, 167, 100, 0.3);
  background: rgba(68, 46, 30, 0.82);
  padding: 3px 9px;
  color: #ecd5b0;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.article-title {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.24;
}

.article-prose {
  display: grid;
  gap: 10px;
}

.article-prose p {
  margin: 0;
  color: #d6c09a;
  font-size: 0.94rem;
  line-height: 1.62;
  max-width: 80ch;
}

.article-prose blockquote {
  margin: 0;
  border-left: 3px solid color-mix(in srgb, var(--accent) 64%, #7a5630 36%);
  padding: 8px 12px;
  border-radius: 0 10px 10px 0;
  background: rgba(59, 41, 27, 0.84);
  color: #f5e9d1;
  font-size: 0.92rem;
  line-height: 1.56;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.article-note {
  color: #c7ae89;
  font-size: 0.82rem;
}

.timeline-item {
  border-radius: 12px;
  border: 1px solid rgba(210, 167, 100, 0.3);
  background: rgba(47, 34, 24, 0.84);
  padding: 10px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.timeline-item .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, #7d5a35 45%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 78%, #fff 22%), var(--accent));
  color: #2d1d10;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.88rem;
}

.timeline-item strong {
  font-size: 0.96rem;
}

.timeline-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 74px 1fr 44px;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
  color: #d9c29c;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(65, 45, 30, 0.88);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0d8a8, var(--accent));
}

.trust {
  border-radius: 15px;
  border: 1px solid rgba(211, 168, 102, 0.32);
  background: linear-gradient(160deg, rgba(44, 32, 22, 0.95), rgba(28, 20, 14, 0.98));
  box-shadow: var(--shadow-md);
  padding: 11px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-item {
  border-radius: 11px;
  border: 1px solid rgba(209, 166, 99, 0.28);
  background: rgba(47, 34, 24, 0.84);
  padding: 10px 11px;
  display: grid;
  gap: 4px;
}

.trust-item i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-style: normal;
  color: #2b1c10;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 70%, #fff 30%), var(--accent));
  font-weight: 800;
  font-size: 0.92rem;
}

.trust-item strong {
  font-size: 0.95rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(209, 166, 99, 0.28);
  background: rgba(47, 34, 24, 0.84);
  overflow: hidden;
}

.faq-item summary {
  min-height: 52px;
  padding: 10px 14px;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #f0dfc3;
  font-size: 0.96rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(213, 171, 106, 0.45);
  background: rgba(74, 50, 30, 0.84);
  color: #f2d39d;
  font-size: 1rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 14px 13px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer {
  margin-top: 2px;
  padding-bottom: 22px;
}

.footer-inner {
  border-top: 1px solid rgba(209, 166, 99, 0.28);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  color: #bfa582;
  font-size: 0.81rem;
}

.dock {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 30;
  border: 1px solid rgba(210, 167, 100, 0.34);
  border-radius: 15px;
  background: rgba(37, 26, 18, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(10, 6, 3, 0.62);
  padding: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.dock a {
  min-height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #dbc6a5;
  font-size: 0.77rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.dock a.active {
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 48%, #805b33 52%);
  background: rgba(76, 51, 30, 0.94);
}

.page-home {
  --accent: #dcb86e;
}

.page-home .hero {
  --hero-image: url("assets/drawn/hero-amonbet-anubis.png");
}

.page-home .hero.has-image::after {
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.page-home .layout {
  align-items: stretch;
}

.page-home .home-guide-section {
  position: relative;
  overflow: hidden;
  background: rgba(42, 30, 20, 0.92);
}

.page-home .home-guide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/drawn/home-guide-coins.png") center bottom / cover no-repeat;
}

.page-home .home-guide-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(41, 29, 20, 0.97) 0%,
    rgba(41, 29, 20, 0.94) 44%,
    rgba(41, 29, 20, 0.70) 72%,
    rgba(41, 29, 20, 0.34) 100%);
}

.page-home .home-guide-section > * {
  position: relative;
  z-index: 2;
}

.page-slots {
  --accent: #79c4b6;
}

.page-slots .hero {
  --hero-image: url("assets/drawn/slots-hero-amonbet.png");
}

.page-slots .hero.has-image::after {
  background-size: cover;
  background-position: left center;
  opacity: 0.95;
}

.page-slots .hero-copy {
  grid-column: 2;
  margin-left: auto;
  max-width: min(620px, 100%);
}

.page-slots .slots-word-main {
  color: #f4e7cf;
  text-shadow: none;
}

.page-slots .slots-word-accent {
  color: #dcb86e;
  text-shadow: 0 0 16px rgba(220, 184, 110, 0.35);
}

.page-slots .hero h1 .brand-amon {
  color: #ffc736;
}

.page-slots .hero h1 .brand-bet {
  color: #ffffff;
}

.page-slots .slots-bonus-btn {
  min-height: 64px;
  padding: 0 36px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-slots .stats-head,
.page-slots .stats-row {
  grid-template-columns: minmax(0, 1.45fr) 0.92fr 0.92fr 0.92fr 132px;
}

.page-slots .stats-head span {
  display: block;
}

.page-slots .stats-head span:last-child,
.page-slots .stats-row .btn-mini {
  justify-self: end;
}

.page-slots .stats-row .btn-mini {
  width: 110px;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(216, 176, 111, 0.5);
  background: linear-gradient(180deg, #f4ddb0, #dcb86e);
  color: #2c1e10;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 9px 20px rgba(220, 184, 110, 0.28);
}

.page-slots .slots-side-bonus-media {
  position: relative;
  width: min(100%, 300px);
  margin: -18px auto 0;
}

.page-slots .slots-side-bonus-image {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(8, 4, 2, 0.35);
}

.page-slots .slots-side-bonus-btn {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: auto;
  min-height: 52px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.page-bonuses {
  --accent: #efc979;
}

.page-bonuses .hero {
  --hero-image: url("assets/drawn/bonuses-hero-amonbet.png");
}

.page-bonuses .hero.has-image::after {
  background-size: cover;
  background-position: right center;
  opacity: 0.95;
}

.page-bonuses .bonuses-bonus-btn {
  min-height: 64px;
  padding: 0 36px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-bonuses .stats-head,
.page-bonuses .stats-row {
  grid-template-columns: minmax(0, 1.45fr) 0.92fr 0.92fr 0.92fr 132px;
}

.page-bonuses .stats-head span {
  display: block;
}

.page-bonuses .stats-head span:last-child,
.page-bonuses .stats-row .btn-mini {
  justify-self: end;
}

.page-bonuses .stats-row .btn-mini {
  width: 110px;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(216, 176, 111, 0.5);
  background: linear-gradient(180deg, #f4ddb0, #dcb86e);
  color: #2c1e10;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 9px 20px rgba(220, 184, 110, 0.28);
}

.page-bonuses .bonuses-layout {
  align-items: start;
}

.page-bonuses .bonuses-left-stack {
  display: grid;
  gap: 11px;
}

.page-bonuses .bonuses-one-click {
  grid-column: 1 / -1;
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: clamp(200px, 21vw, 290px);
  display: flex;
  align-items: stretch;
}

.page-bonuses .bonuses-one-click::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 11, 8, 0.14) 0%,
    rgba(18, 12, 8, 0.34) 48%,
    rgba(20, 13, 9, 0.84) 78%,
    rgba(20, 13, 9, 0.94) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.page-bonuses .bonuses-one-click img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-bonuses .bonuses-one-click-copy {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(100%, 440px);
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 16px 16px 16px 18px;
  background: linear-gradient(90deg, rgba(31, 22, 15, 0), rgba(31, 22, 15, 0.82) 34%, rgba(31, 22, 15, 0.95));
}

.page-bonuses .bonuses-one-click-copy h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.03;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.page-bonuses .bonuses-one-click-copy p {
  margin: 0;
  color: #dcc39f;
  font-size: 1rem;
  line-height: 1.44;
}

.page-bonuses .bonuses-one-click-copy .btn {
  width: 100%;
  min-height: 56px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-strategy {
  --accent: #efc979;
}

.page-strategy .hero {
  --hero-image: url("assets/drawn/strategy-hero-amonbet.png");
}

.page-strategy .hero.has-image::after {
  background-size: cover;
  background-position: left center;
  opacity: 0.95;
}

.page-strategy .hero-copy {
  grid-column: 2;
  margin-left: auto;
  max-width: min(620px, 100%);
}

.page-strategy .hero h1 .strategy-word-main {
  color: #f4e7cf;
  text-shadow: none;
}

.page-strategy .hero h1 .strategy-word-accent {
  color: #efc979;
  text-shadow: 0 0 16px rgba(239, 201, 121, 0.34);
}

.page-strategy .hero h1 .brand-amon {
  color: #ffc736;
  text-shadow: 0 0 16px rgba(255, 199, 54, 0.45);
}

.page-strategy .hero h1 .brand-bet {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.page-strategy .strategy-bonus-btn {
  min-height: 64px;
  padding: 0 36px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-strategy .strategy-materials {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  gap: 0;
}

.page-strategy .strategy-materials .sect-head,
.page-strategy .strategy-materials .card-grid {
  position: relative;
  z-index: 3;
}

.page-strategy .strategy-materials .card-grid {
  margin-bottom: 0;
}

.page-strategy .strategy-materials .panel-card {
  background: rgba(47, 34, 24, 0.72);
  backdrop-filter: blur(2px);
}

.page-strategy .strategy-referral {
  position: relative;
  z-index: 1;
  margin: clamp(-86px, -8vw, -54px) -13px -13px;
  min-height: clamp(300px, 34vw, 426px);
  padding-top: clamp(64px, 7.5vw, 98px);
  overflow: hidden;
  isolation: isolate;
  background: url("assets/drawn/strategy-referral-bg.png") center/cover no-repeat;
}

.page-strategy .strategy-referral::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(45, 32, 22, 1) 0%, rgba(45, 32, 22, 0.92) 16%, rgba(39, 28, 20, 0.52) 34%, rgba(25, 18, 13, 0.2) 49%, rgba(19, 14, 10, 0.62) 100%),
    linear-gradient(90deg, rgba(18, 13, 10, 0.4) 0%, rgba(18, 13, 10, 0.03) 26%, rgba(18, 13, 10, 0.03) 74%, rgba(18, 13, 10, 0.45) 100%);
}

.page-strategy .strategy-referral-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 26px) clamp(14px, 2.4vw, 30px) clamp(16px, 2.4vw, 24px);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 15px;
}

.page-strategy .strategy-referral-content h4 {
  margin: 0;
  text-align: center;
  color: #f8efe1;
  font-size: clamp(1.58rem, 3.2vw, 3rem);
  line-height: 1.06;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.48);
}

.page-strategy .strategy-referral-row {
  width: fit-content;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(233, 220, 192, 0.22);
  background: linear-gradient(180deg, rgba(132, 118, 133, 0.5), rgba(103, 88, 102, 0.42));
  box-shadow: 0 16px 36px rgba(7, 4, 3, 0.35);
  backdrop-filter: blur(4px);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.page-strategy .strategy-referral-gift {
  width: clamp(74px, 9.4vw, 104px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(8, 11, 20, 0.45));
  flex: 0 0 auto;
}

.page-strategy .strategy-referral-copy {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.page-strategy .strategy-referral-copy span {
  color: #ece3d6;
  font-size: clamp(0.95rem, 1.3vw, 1.38rem);
  font-weight: 700;
}

.page-strategy .strategy-referral-copy strong {
  color: #f5f7ff;
  font-size: clamp(2rem, 3.1vw, 3.52rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(84, 211, 255, 0.38);
}

.page-strategy .strategy-referral-action {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.page-strategy .strategy-referral-bonus-btn {
  min-height: 56px;
  padding: 0 32px;
  font-size: clamp(0.94rem, 1.1vw, 1.06rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-strategy .strategy-watch-slots-btn {
  width: 100%;
  min-height: 62px;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-reviews {
  --accent: #d7a8b7;
}

.page-reviews .hero {
  --hero-image: url("assets/drawn/reviews-hero-amonbet.png");
}

.page-reviews .hero.has-image::after {
  background-size: cover;
  background-position: right center;
  opacity: 0.95;
}

.page-reviews .hero h1 .reviews-word-main {
  color: #f4e7cf;
  text-shadow: none;
}

.page-reviews .hero h1 .reviews-word-accent {
  color: #dcb86e;
  text-shadow: 0 0 16px rgba(220, 184, 110, 0.35);
}

.page-reviews .hero h1 .brand-amon {
  color: #ffc736;
  text-shadow: 0 0 16px rgba(255, 199, 54, 0.45);
}

.page-reviews .hero h1 .brand-bet {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.page-reviews .reviews-bonus-btn {
  min-height: 64px;
  padding: 0 36px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-reviews .reviews-unified {
  display: grid;
  gap: 8px;
  padding: 8px;
}

.page-reviews .reviews-unified > .sect-head {
  margin-top: 0;
  margin-bottom: 0;
}

.page-reviews #ratings {
  gap: 8px;
}

.page-reviews .reviews-unified .card-grid {
  gap: 8px;
}

.page-reviews .reviews-unified .panel-card .body {
  padding: 8px;
  gap: 6px;
}

.page-reviews .reviews-feed-grid {
  margin-top: 0;
}

.page-reviews .reviews-promo {
  height: auto;
  padding: 10px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  overflow: hidden;
}

.page-reviews .reviews-promo h3 {
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(1.72rem, 2.2vw, 2.28rem);
}

.page-reviews .reviews-promo p {
  margin: 0;
  color: #dfc39a;
  font-size: 0.93rem;
  line-height: 1.4;
}

.page-reviews .reviews-promo-media {
  position: relative;
  margin: 2px 0 0;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 74px;
  background: linear-gradient(180deg, rgba(45, 32, 22, 0.08), rgba(45, 32, 22, 0.08));
}

.page-reviews .reviews-promo-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 24px rgba(8, 4, 2, 0.38));
}

.page-reviews .reviews-promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 26, 18, 0) 46%, rgba(36, 26, 18, 0.52) 78%, rgba(36, 26, 18, 0.96) 100%);
  pointer-events: none;
}

.page-reviews .reviews-promo-btn {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 14px;
  z-index: 2;
  width: auto;
  min-height: 58px;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    border-radius: 15px;
    border: 1px solid rgba(212, 168, 102, 0.34);
    background: rgba(37, 26, 18, 0.98);
    box-shadow: var(--shadow-md);
    padding: 10px;
    display: grid;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 340px;
  }

  .hero.has-image::after {
    background-size: cover;
    opacity: 0.42;
  }

  .page-slots .hero-copy {
    grid-column: 1;
    margin-left: 0;
    max-width: 100%;
  }

  .page-strategy .hero-copy {
    grid-column: 1;
    margin-left: 0;
    max-width: 100%;
  }

  .page-slots .slots-bonus-btn {
    min-height: 56px;
    font-size: 0.96rem;
  }

  .page-bonuses .bonuses-bonus-btn {
    min-height: 56px;
    font-size: 0.96rem;
  }

  .page-strategy .strategy-bonus-btn {
    min-height: 56px;
    font-size: 0.96rem;
  }

  .page-strategy .strategy-watch-slots-btn {
    min-height: 56px;
    font-size: 0.95rem;
  }

  .page-reviews .reviews-bonus-btn {
    min-height: 56px;
    font-size: 0.96rem;
  }

  .page-reviews .reviews-promo {
    height: auto;
  }

  .page-reviews .reviews-promo-media {
    padding-bottom: 70px;
  }

  .page-reviews .reviews-promo-btn {
    min-height: 54px;
    font-size: 0.95rem;
  }

  .page-strategy .strategy-referral {
    margin-top: -48px;
    min-height: 330px;
    padding-top: 52px;
  }

  .page-strategy .strategy-referral-content {
    padding: 15px 13px 13px;
    gap: 12px;
  }

  .page-strategy .strategy-referral-content h4 {
    font-size: clamp(1.32rem, 5.1vw, 2.2rem);
  }

  .page-strategy .strategy-referral-row {
    width: fit-content;
    max-width: 100%;
    padding: 11px;
    gap: 10px 11px;
  }

  .page-strategy .strategy-referral-action {
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    padding: 0;
  }

  .page-bonuses .bonuses-one-click {
    min-height: 300px;
    align-items: flex-end;
  }

  .page-bonuses .bonuses-one-click::after {
    background: linear-gradient(
      180deg,
      rgba(16, 11, 8, 0.12) 0%,
      rgba(18, 12, 8, 0.45) 56%,
      rgba(20, 13, 9, 0.94) 100%
    );
  }

  .page-bonuses .bonuses-one-click img {
    min-height: 100%;
    max-height: none;
    object-position: center;
  }

  .page-bonuses .bonuses-one-click-copy {
    width: 100%;
    margin-left: 0;
    padding: 12px;
    background: linear-gradient(180deg, rgba(31, 22, 15, 0), rgba(31, 22, 15, 0.72) 22%, rgba(31, 22, 15, 0.95));
  }

  .page-bonuses .bonuses-one-click-copy .btn {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .article-sheet-character .article-top,
  .article-sheet-character .article-prose {
    max-width: 100%;
  }

  .article-character {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(340px, 92%);
    margin: 2px auto 0;
    pointer-events: auto;
  }

  .article-character-btn {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .stats-head,
  .stats-row {
    grid-template-columns: minmax(0, 1fr) 0.9fr 0.8fr auto;
  }

  .stats-head span:nth-child(4),
  .stats-row span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 22px));
  }

  .sect-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sect-head a {
    font-size: 0.84rem;
  }

  .topbar {
    padding-top: 12px;
  }

  .topbar-inner {
    min-height: 62px;
    padding: 8px 8px 8px 10px;
    gap: 8px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.83rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .login {
    display: none;
  }

  .hero {
    margin-top: 4px;
    padding: 15px;
    border-radius: 20px;
    min-height: 300px;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 8.6vw, 2.25rem);
  }

  .page-slots .hero h1,
  .page-bonuses .hero h1 {
    font-size: clamp(1.55rem, 8vw, 2.12rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.91rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    min-height: 45px;
    padding: 10px 13px;
    font-size: 0.88rem;
  }

  .hero-bonus-btn {
    min-height: 54px;
    font-size: 0.93rem;
    grid-column: 1 / -1;
    width: 100%;
  }

  .page-slots .stats-row .btn-mini,
  .page-bonuses .stats-row .btn-mini {
    width: 96px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .page-strategy .strategy-referral {
    margin-top: -34px;
    min-height: 360px;
    padding-top: 36px;
  }

  .page-reviews .reviews-promo-media {
    padding-bottom: 64px;
  }

  .page-strategy .strategy-referral-content h4 {
    font-size: clamp(1.26rem, 8vw, 1.74rem);
  }

  .page-strategy .strategy-referral-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .page-strategy .strategy-referral-copy {
    justify-items: center;
  }

  .page-strategy .strategy-referral-action {
    width: fit-content;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }

  .page-strategy .strategy-referral-bonus-btn {
    width: auto;
    max-width: 100%;
  }

  .metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-head {
    display: none;
  }

  .stats-row {
    grid-template-columns: 1fr auto;
  }

  .stats-row span:nth-child(2),
  .stats-row span:nth-child(3),
  .stats-row span:nth-child(4) {
    display: none;
  }

  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .page-slots .chips,
  .page-bonuses .chips {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-bonuses .bonuses-one-click {
    min-height: 270px;
  }

  .page-bonuses .bonuses-one-click-copy {
    padding: 11px 10px 12px;
    gap: 8px;
  }

  .page-bonuses .bonuses-one-click-copy h3 {
    font-size: clamp(1.12rem, 6.2vw, 1.42rem);
    line-height: 1.06;
  }

  .page-bonuses .bonuses-one-click-copy p {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .article-sheet {
    padding: 11px;
  }

  .article-prose p,
  .article-prose blockquote {
    font-size: 0.9rem;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 0.9rem;
    padding: 10px 11px;
  }

  .faq-item p {
    padding: 0 11px 11px;
    font-size: 0.86rem;
  }

  .footer {
    padding-bottom: 88px;
  }

  main {
    padding-bottom: 104px;
  }

  .dock {
    display: grid;
  }
}

@media (max-width: 980px) {
  .page-slots .stats-head,
  .page-bonuses .stats-head {
    display: none;
  }

  .page-slots .stats-row,
  .page-bonuses .stats-row {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: stretch;
    padding: 10px;
  }

  .page-slots .stats-row strong,
  .page-bonuses .stats-row strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .page-slots .stats-row span,
  .page-bonuses .stats-row span {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(209, 166, 99, 0.24);
    border-radius: 9px;
    background: rgba(56, 39, 26, 0.72);
    padding: 6px 9px;
    font-size: 0.84rem;
    color: #ddc6a2;
  }

  .page-slots .stats-row span::before,
  .page-bonuses .stats-row span::before {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f0dfc3;
  }

  .page-slots .stats-row span:nth-child(2)::before {
    content: "RTP";
  }

  .page-slots .stats-row span:nth-child(3)::before {
    content: "VOL";
  }

  .page-slots .stats-row span:nth-child(4)::before {
    content: "MAX X";
  }

  .page-bonuses .stats-row span:nth-child(2)::before {
    content: "EXIGENCE";
  }

  .page-bonuses .stats-row span:nth-child(3)::before {
    content: "LIMITE RETRAIT";
  }

  .page-bonuses .stats-row span:nth-child(4)::before {
    content: "DUREE";
  }

  .page-slots .stats-row .btn-mini,
  .page-bonuses .stats-row .btn-mini {
    justify-self: stretch;
    width: 100%;
    min-height: 40px;
    margin-top: 2px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

