/* ==========================================================================
   SlotsPlayTop — обзоры слотов и рейтинг казино
   Bootstrap 5, mobile-first
   Палитра: зелёный #00a85a / песочный #f8f4ec / чернила #16241d
   ========================================================================== */

:root {
  --green: #00a85a;
  --green-600: #068c4e;
  --green-700: #0b6b3f;
  --green-900: #0a3d29;
  --green-glow: rgba(0, 168, 90, 0.22);
  --ink: #16241d;
  --ink-2: #47574f;
  --mute: #74847c;
  --sand: #f8f4ec;
  --sand-2: #f3eee3;
  --line: #e2e8e3;
  --mint: #d3efe0;
  --white: #ffffff;
  --amber: #f6b51f;
  --danger: #d94b4b;
  --radius: 0.375rem;
  --radius-sm: 0.375rem;
  --shadow-sm: 0 1px 2px rgba(10, 61, 41, 0.05), 0 6px 16px rgba(10, 61, 41, 0.05);
  --shadow-md: 0 6px 20px rgba(10, 61, 41, 0.08);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.lead { color: var(--ink-2); }
.text-mute { color: var(--mute); }
.accent { color: var(--green); }

.section { padding: 48px 0; }
.section--sand { background: var(--sand); }
.section--tight { padding: 32px 0; }

/* Eyebrow + section head */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.sec-head { margin-bottom: 28px; }
.sec-head h2 { margin-bottom: 8px; }
.sec-head p { color: var(--mute); max-width: 720px; margin-bottom: 0; }

/* ============================== Buttons ============================== */
.btn { border-radius: var(--radius-sm); font-weight: 700; }

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: var(--green);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--green-600);
  --bs-btn-hover-border-color: var(--green-600);
  --bs-btn-active-bg: var(--green-700);
  --bs-btn-active-border-color: var(--green-700);
  box-shadow: 0 6px 16px var(--green-glow);
}

.btn-outline-green {
  --bs-btn-color: var(--green-700);
  --bs-btn-bg: #fff;
  --bs-btn-border-color: var(--mint);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--green);
  --bs-btn-hover-border-color: var(--green);
}

.btn-lg { padding: 0.8rem 1.6rem; }

/* ============================== Header ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.8) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px var(--green-glow);
}
.brand small { display: block; font-size: 0.62rem; font-weight: 600; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: none; }
.main-nav .nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 4px;
  margin: 0 12px;
  border-bottom: 2px solid transparent;
}
.main-nav .nav-link:hover { color: var(--green-600); }
.main-nav .nav-link.active { color: var(--green-600); border-bottom-color: var(--green); }
.main-nav .dropdown-toggle::after { margin-left: 6px; }
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.dropdown-item { border-radius: 0.375rem; font-size: 0.88rem; font-weight: 500; padding: 9px 12px; }
.dropdown-item:hover { background: var(--sand); color: var(--green-700); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

/* Offcanvas */
.offcanvas { border-left: 1px solid var(--line); }
.offcanvas .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.offcanvas .nav-link:hover { color: var(--green-600); }

/* ============================== Hero ============================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: url("../img/slot.webp") center / cover no-repeat;
  filter: blur(6px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 85% 10%, rgba(0, 168, 90, 0.10) 0%, rgba(0, 168, 90, 0) 60%),
    linear-gradient(180deg, rgba(248, 244, 236, 0.84) 0%, rgba(255, 255, 255, 0.93) 100%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mint);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  margin-bottom: 18px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--mint);
}
.hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 16px; }
.hero__sub { color: var(--ink-2); max-width: 560px; margin-bottom: 24px; }

.hero__offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  max-width: 460px;
  margin-bottom: 22px;
}
.hero__offer-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__offer-value { font-size: 1.25rem; font-weight: 800; }
.hero__offer-value .accent { font-weight: 800; }

.hero__media { text-align: center; }
.hero__media .frame {
  display: block;
  width: min(460px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 0.375rem;
  box-shadow: 0 20px 50px rgba(10, 61, 41, 0.25);
  background: var(--sand);
}
.hero__stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}
.hero__stat { background: var(--white); text-align: center; padding: 18px 10px; }
.hero__stat b { display: block; font-size: 1.05rem; color: var(--green-700); }
.hero__stat span { font-size: 0.72rem; color: var(--mute); }

/* ============================== Slot cards ============================== */
.slot-grid { --bs-gutter-y: 1rem; }
.slot-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}
.slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
  color: inherit;
}
.slot-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  color: #fff;
  overflow: hidden;
}
.slot-thumb .slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slot-thumb .slot-provider {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  padding: 3px 7px;
  backdrop-filter: blur(4px);
}
.slot-thumb .slot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--amber);
  color: #3a2a00;
  border-radius: 6px;
  padding: 3px 7px;
}
.slot-thumb .slot-badge.hot { background: var(--danger); color: #fff; }
.slot-thumb .slot-badge.green { background: var(--mint); color: var(--green-700); }
.slot-thumb .slot-ico {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  opacity: 0.9;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}
.slot-thumb .slot-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s ease;
  background: rgba(10, 61, 41, 0.35);
}
.slot-thumb .slot-play .circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px var(--green-glow);
}
.slot-card:hover .slot-play { opacity: 1; }
.slot-body { padding: 11px 12px 13px; }
.slot-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-meta {
  font-size: 0.72rem;
  color: var(--mute);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
}
.slot-meta .rtp { color: var(--green-700); font-weight: 700; }
.slot-meta .stars { color: var(--amber); font-weight: 700; }

/* ============================== Casino rating ============================== */
.casino-list { display: flex; flex-direction: column; gap: 12px; }
.casino-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.casino-item:hover { border-color: var(--mint); box-shadow: var(--shadow-md); }
.casino-item--top { border-color: var(--mint); background: linear-gradient(180deg, #f6fbf8, #fff); }

.casino-logo {
  width: 76px;
  height: 76px;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
  align-self: center;
  overflow: hidden;
  background: var(--mint);
}
.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.casino-info { min-width: 0; }
.casino-name {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.casino-name .pos {
  font-size: 0.62rem;
  font-weight: 800;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}
.casino-bonus { font-size: 0.78rem; color: var(--ink-2); }
.casino-rate { font-size: 0.74rem; color: var(--amber); font-weight: 700; white-space: nowrap; }
.casino-rate span { color: var(--mute); font-weight: 600; }

.casino-logo-sm { width: 34px; height: 34px; border-radius: 0.375rem; font-size: 0.7rem; }

.casino-action { grid-column: 1 / -1; display: flex; align-items: stretch; gap: 10px; }
.coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: space-between;
  border: 1px dashed var(--green);
  background: var(--sand);
  border-radius: 0.375rem;
  padding: 5px 8px;
}
.coupon .lbl {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  line-height: 1;
}
.coupon code {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-700);
  background: transparent;
}
.coupon-copy {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 0.375rem;
  background: var(--white);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mint);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex: 0 0 auto;
}
.coupon-copy:hover { background: var(--green); color: #fff; border-color: var(--green); }
.coupon-copy.is-done { background: var(--green); color: #fff; border-color: var(--green); }

.btn-play {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: var(--green);
  --bs-btn-hover-bg: var(--green-600);
  --bs-btn-hover-border-color: var(--green-600);
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  box-shadow: 0 5px 12px var(--green-glow);
  white-space: nowrap;
}

/* Copy toast */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0.375rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
  box-shadow: var(--shadow-md);
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================== Chips / filters ============================== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { color: var(--green-700); border-color: var(--mint); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; }
.chip .count { font-size: 0.68rem; font-weight: 700; opacity: 0.7; }

/* ============================== Rating table (mini) ============================== */
.rating-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.rating-row:last-child { border-bottom: none; }
.rating-row .rank { font-weight: 800; color: var(--mute); width: 22px; }
.rating-row .rank.top { color: var(--green-700); }

/* ============================== Cards (generic) ============================== */
.cc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.info-card { display: flex; gap: 14px; align-items: flex-start; }
.info-card .ic-ico {
  width: 44px; height: 44px;
  border-radius: 0.375rem;
  background: var(--mint);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.info-card h6 { margin-bottom: 4px; }
.info-card p { font-size: 0.85rem; color: var(--mute); margin: 0; }

/* Sidebar sections divider */
.sb-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
  opacity: 1;
}

/* Author block */
.author-block { display: flex; gap: 12px; align-items: flex-start; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex: 0 0 auto;
}
.author-name { font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.author-bio { font-size: 0.82rem; color: var(--mute); margin: 4px 0 0; }

/* ============================== Review page ============================== */
.review-hero {
  background: linear-gradient(180deg, var(--sand), var(--white));
  padding: 32px 0 40px;
}
.review-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--green) 0%, var(--green-700) 55%, var(--green-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}
.spec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list .k { color: var(--mute); }
.spec-list .v { font-weight: 700; color: var(--ink); text-align: right; }
.spec-list .v.green { color: var(--green-700); }

.review-rating { display: flex; align-items: center; gap: 10px; }
.review-rating .score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}
.review-rating .stars { color: var(--amber); font-size: 1.05rem; }
.review-rating .cnt { font-size: 0.74rem; color: var(--mute); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list.cross-list li::before { content: "×"; background: #fbe3e3; color: var(--danger); }

/* ============================== Blog ============================== */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.post-card > a { display: block; }
.post-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.post-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-body { padding: 18px 20px 20px; flex: 1 1 auto; }
.post-cat {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--mint);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.post-title { font-size: 1.02rem; font-weight: 800; line-height: 1.35; }
.post-title a { color: var(--ink); }
.post-title a:hover { color: var(--green-700); }
.post-excerpt { font-size: 0.86rem; color: var(--mute); margin: 8px 0 0; }
.post-meta { font-size: 0.74rem; color: var(--mute); display: flex; gap: 14px; margin-top: 12px; }
.post-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* Article */
.article-body { font-size: 1rem; color: var(--ink-2); max-width: 760px; }
.article-body h2 { font-size: 1.5rem; margin: 32px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 26px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 1.2rem; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--green);
  background: var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-weight: 600;
  color: var(--ink);
}
.article-lead { font-size: 1.12rem; font-weight: 600; color: var(--ink); }

/* ============================== FAQ ============================== */
.accordion { --bs-accordion-border-color: var(--line); --bs-accordion-border-radius: var(--radius-sm); }
.accordion-button { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.accordion-button:not(.collapsed) { color: var(--green-700); background: var(--sand); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--mint); }
.accordion-body { color: var(--ink-2); font-size: 0.9rem; }

/* ============================== Breadcrumbs ============================== */
.crumbs { font-size: 0.78rem; color: var(--mute); }
.crumbs a { color: var(--mute); }
.crumbs a:hover { color: var(--green-700); }
.crumbs .sep { margin: 0 6px; }

/* ============================== Back to top ============================== */
#toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px var(--green-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1500;
  cursor: pointer;
}
#toTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#toTop:hover { background: var(--green-600); }

/* ============================== Footer ============================== */
.site-footer { background: var(--green-900); color: rgba(255, 255, 255, 0.7); padding: 56px 0 28px; }
.site-footer h6 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; }
.site-footer a:hover { color: var(--mint); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255, 255, 255, 0.5); }
.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================== Responsive ============================== */
@media (min-width: 576px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
  .main-nav { display: flex; }
  .burger { display: none; }
  .section { padding: 64px 0; }
  .casino-item { grid-template-columns: auto 1fr auto; padding: 12px 16px; }
  .casino-action { grid-column: auto; }
}

@media (min-width: 1200px) {
  .section { padding: 76px 0; }
}
