/* =====================================================
   Vodka Casino Review — style.css
   ===================================================== */

/* 1. CSS Custom Properties */
:root {
  --bg-primary: #0B0E1A;
  --bg-secondary: #111827;
  --bg-card: #1A1F35;
  --bg-card-hover: #222842;
  --accent-primary: #00BF63;
  --accent-primary-hover: #00A854;
  --link-color: #6BFFD0;
  --link-hover: #94FFE0;
  --accent-secondary: #2D9CDB;
  --accent-orange: #F27A1A;
  --accent-gold: #FFD700;
  --text-primary: #F1F5F9;
  --text-secondary: #B7C7DD;
  --text-muted: #A7B9D1;
  --border-default: #1E293B;
  --gradient-cta: linear-gradient(135deg, #00BF63 0%, #00A854 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
  --container-max: 1200px;
  --header-height: 64px;
}

/* 2. Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(1000px 500px at 85% -5%, rgba(0,191,99,0.08), transparent 60%),
    radial-gradient(700px 420px at -10% 20%, rgba(45,156,219,0.06), transparent 65%);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--link-color); text-decoration: none; transition: color var(--transition); }
a:visited { color: var(--link-color); }
a:hover { color: var(--link-hover); }
ul, ol { list-style: none; }
input, textarea, button, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* 3. Typography */
h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--text-primary); }
em { font-style: italic; }

/* 4. Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* 5. Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(11, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { color: var(--text-primary); }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav__cta {
  margin-left: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gradient-cta);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
}
.nav__cta:hover { background: var(--accent-primary-hover); color: #fff; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-default);
  padding: 1rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-mobile.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile .nav__link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1rem;
}
.nav-mobile .nav__cta { text-align: center; margin-top: 0.5rem; padding: 0.75rem 1rem; }

@media (max-width: 767px) {
  .burger { display: flex; }
  .nav { display: none; }
}
@media (min-width: 768px) {
  .nav-mobile,
  .mobile-nav-backdrop {
    display: none !important;
  }
}
.mobile-nav-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  background: rgba(6, 11, 20, 0.66);
  border: 0;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* 6. Breadcrumbs */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: ' / '; margin-left: 0.25rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent-primary); }
.breadcrumbs li:last-child { color: var(--text-primary); }

/* 7. Hero Section */
.hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #0B0E1A 0%, #111827 60%, #0d1420 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,191,99,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,191,99,0.1);
  border: 1px solid rgba(0,191,99,0.3);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__title { margin-bottom: 1rem; }
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__stat {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 120px;
}
.hero__stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* 8. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,99,0.3);
}
.btn-primary:hover {
  background: var(--accent-primary-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,191,99,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-default);
}
.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* 9. Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card__text { font-size: 0.9rem; color: var(--text-secondary); }
.card__text a,
.info-box a,
.step__text a,
.grid-2 p a,
.grid-3 p a,
.tg-block a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.card__text a:visited,
.info-box a:visited,
.step__text a:visited,
.grid-2 p a:visited,
.grid-3 p a:visited,
.tg-block a:visited {
  color: #FFFFFF;
}
.card__text a:hover,
.info-box a:hover,
.step__text a:hover,
.grid-2 p a:hover,
.grid-3 p a:hover,
.tg-block a:hover {
  color: #FFFFFF;
}
.info-box > div > a,
.grid-2 > div > p > a,
.grid-3 > div.card > p.card__text > a {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: #0B0E1A;
  padding: 0.08rem 0.3rem;
  border-radius: 4px;
}

/* 10. Section */
.section {
  padding: 3rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section--alt {
  background: var(--bg-secondary);
}
.section__header {
  margin-bottom: 2rem;
}
.section__title { margin-bottom: 0.5rem; }
.section__subtitle { color: var(--text-secondary); font-size: 1rem; }
.section__divider {
  width: 48px;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: 99px;
  margin: 0.75rem 0 1rem;
}

/* 11. Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: rgba(10, 16, 30, 0.75);
}
.table-wrap.table-wrap--enhanced {
  position: relative;
}
.table-wrap.table-wrap--scrollable::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 16, 30, 0), rgba(10, 16, 30, 0.92));
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead { background: var(--bg-card); }
th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  white-space: nowrap;
}
td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border-default);
  color: var(--text-secondary);
  vertical-align: middle;
}
tr:hover td { background: rgba(255,255,255,0.02); }
td:first-child, th:first-child { font-weight: 600; color: var(--text-primary); }
.td-green { color: var(--accent-primary); font-weight: 600; }
.td-gold { color: var(--accent-gold); font-weight: 600; }
.td-orange { color: var(--accent-orange); font-weight: 600; }
@media (max-width: 767px) {
  table { min-width: 640px; }
  th, td { padding: 0.7rem 0.75rem; }
  td:first-child, th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #121a2d;
    box-shadow: 1px 0 0 var(--border-default);
  }
}

/* 12. Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons__block {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.pros-cons__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pros-cons__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-list li::before {
  background: rgba(0,191,99,0.15);
  border: 1.5px solid var(--accent-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2300BF63' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.cons-list li::before {
  background: rgba(242,122,26,0.12);
  border: 1.5px solid var(--accent-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23F27A1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* 13. Rating */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.stars { display: flex; gap: 2px; }
.star {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}
.star--half { fill: url(#half-star); }
.star--empty { fill: var(--border-default); color: var(--border-default); }
.rating__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}
.rating__count { font-size: 0.8rem; color: var(--text-muted); }

/* 14. FAQ */
.faq { }
.faq__item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: var(--accent-primary); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  background: var(--bg-card);
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--bg-card-hover); }
.faq__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,191,99,0.1);
  border: 1.5px solid rgba(0,191,99,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  font-size: 1rem;
  color: var(--accent-primary);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq__item.open .faq__answer { display: block; }
.faq__answer a { color: var(--accent-primary); }

/* 15. Author Box */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent-primary);
}
.author-box__avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 2px solid var(--accent-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
}
.author-box__name { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.author-box__meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.author-box__bio { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* 16. ToC */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.toc__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.toc__list { display: flex; flex-direction: column; gap: 0.3rem; }
.toc__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 0.15rem 0;
  display: block;
}
.toc__link:hover, .toc__link.active { color: var(--accent-primary); }
.toc__list li { counter-increment: toc-counter; }

/* 17. Promo Code */
.promo-code-box {
  background: linear-gradient(135deg, rgba(0,191,99,0.08) 0%, rgba(0,191,99,0.04) 100%);
  border: 1.5px dashed rgba(0,191,99,0.4);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.promo-code-box__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.promo-code-box__code {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.promo-code-box__benefit {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.btn-copy {
  background: var(--gradient-cta);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-copy:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,191,99,0.3); }
.btn-copy.copied { background: var(--accent-secondary); }

/* 18. Slot Card */
/* Slot grid — 2 col mobile, 4 col desktop */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px)  { .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .slot-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.slot-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  border-color: rgba(0,191,99,0.4);
}

/* Обложка — квадратная на мобиле, 3:4 на десктопе */
.slot-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
@media (min-width: 640px) { .slot-card__thumb { aspect-ratio: 2/3; } }

.slot-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.slot-card:hover .slot-card__thumb img {
  transform: scale(1.07);
}

/* Градиент-оверлей снизу всегда */
.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,14,26,0.96) 0%, rgba(11,14,26,0.5) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
  gap: 0.3rem;
}

.slot-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
@media (min-width: 640px) { .slot-card__name { font-size: 0.95rem; } }

.slot-card__provider {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slot-card__meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.slot-card__rtp {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(0,191,99,0.12);
  border: 1px solid rgba(0,191,99,0.25);
  border-radius: 4px;
  padding: 0.15em 0.45em;
}
.slot-card__vol {
  font-size: 0.65rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 0.15em 0.45em;
}
.slot-card__vol--high  { color: var(--accent-orange); background: rgba(242,122,26,0.1); }
.slot-card__vol--xhigh { color: #ef4444; background: rgba(239,68,68,0.1); }
.slot-card__vol--med   { color: var(--accent-secondary); background: rgba(45,156,219,0.1); }

/* Бейдж в правом верхнем углу */
.slot-card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.55em;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}
.slot-card__badge--hot    { background: linear-gradient(135deg,#f27a1a,#e05c00); color:#fff; }
.slot-card__badge--new    { background: linear-gradient(135deg,#2d9cdb,#1a7bbf); color:#fff; }
.slot-card__badge--top    { background: linear-gradient(135deg,#ffd700,#e6b800); color:#000; }
.slot-card__badge--rec    { background: linear-gradient(135deg,#00bf63,#00a854); color:#fff; }

/* Кнопка «Играть» — появляется при hover */
.slot-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 3;
}
.slot-card:hover .slot-card__play { opacity: 1; }
.slot-card__play-btn {
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,191,99,0.4);
  pointer-events: none;
  transform: translateY(6px);
  transition: transform 0.22s ease;
}
.slot-card:hover .slot-card__play-btn { transform: translateY(0); }

/* 19. Payment icons */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.payment-icon {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.payment-icon:hover img { filter: brightness(1); }

/* 20. Info Box */
.info-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--accent-secondary);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.info-box--warning { border-left-color: var(--accent-orange); }
.info-box--success { border-left-color: var(--accent-primary); }
.info-box__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }

/* 21. Steps */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,191,99,0.3);
}
.step__content { padding-top: 0.3rem; }
.step__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.step__text { font-size: 0.875rem; color: var(--text-secondary); }

/* 22. Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 23. Bonus Card */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.bonus-card--featured { border-color: var(--accent-primary); }
.bonus-card__badge {
  display: inline-block;
  background: rgba(0,191,99,0.12);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.bonus-card__amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}
.bonus-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.bonus-card__list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.bonus-card__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.bonus-card__list li::before { content: '→'; color: var(--accent-primary); flex-shrink: 0; }

/* 24. Provider Card */
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.provider-card:hover { border-color: var(--accent-secondary); transform: translateY(-1px); }
.provider-card__name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.provider-card__desc { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

/* 25. Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.stat-item__value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
  display: block;
}
.stat-item__label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* 26. Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,191,99,0.05) 100%);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.verdict-box__score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.verdict-box__label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* 27. CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0,191,99,0.1) 0%, rgba(0,168,84,0.05) 100%);
  border: 1px solid rgba(0,191,99,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.cta-section__title { margin-bottom: 0.75rem; }
.cta-section__subtitle { color: var(--text-secondary); margin-bottom: 1.75rem; }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* 28. Reading time */
.reading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.reading-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* 29. Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(11,14,26,0.97);
  border-top: 1px solid var(--border-default);
  backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transform: translateY(110%);
  transition: transform var(--transition), opacity var(--transition);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.sticky-cta__text { font-size: 0.85rem; color: var(--text-secondary); }
.sticky-cta__text strong { color: var(--accent-primary); }
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 30.1 Reading progress + scroll top */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #00BF63 0%, #2D9CDB 100%);
  box-shadow: 0 0 14px rgba(45, 156, 219, 0.5);
  pointer-events: none;
}
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 19, 33, 0.92);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 110;
  transition: transform var(--transition), opacity var(--transition), border-color var(--transition);
}
.scroll-top:hover { border-color: var(--accent-primary); }
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: calc(5rem + env(safe-area-inset-bottom));
  }
}

/* 30. Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  padding: 3rem 0 5rem;
}
@media (min-width: 768px) { .footer { padding-bottom: 3rem; } }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) { .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}
.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent-primary); }
.footer__bottom {
  border-top: 1px solid var(--border-default);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }
.legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

/* 31. Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* 32. Badge / Tag */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(0,191,99,0.12); color: var(--accent-primary); }
.badge-gold { background: rgba(255,215,0,0.12); color: var(--accent-gold); }
.badge-orange { background: rgba(242,122,26,0.12); color: var(--accent-orange); }
.badge-blue { background: rgba(45,156,219,0.12); color: var(--accent-secondary); }

/* 33. List styled */
.list-check { display: flex; flex-direction: column; gap: 0.5rem; }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.list-check li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* 34. Highlight text */
.highlight { color: var(--accent-primary); }
.highlight-gold { color: var(--accent-gold); }
.highlight-orange { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* 35. Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* 36. VIP table */
.vip-level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 37. Telegram block */
.tg-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(45,156,219,0.08);
  border: 1px solid rgba(45,156,219,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}
.tg-block__icon { font-size: 1.5rem; flex-shrink: 0; }
.tg-block a { font-weight: 600; }

/* 38. Contact card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card__icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.contact-card__title { font-weight: 700; margin-bottom: 0.4rem; }
.contact-card__desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }

/* 39. Form */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0,191,99,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* 40. 404 page */
.error-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  opacity: 0.2;
}
.error-page__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.error-page__text { color: var(--text-secondary); margin-bottom: 2rem; }

/* 41. Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* 42. Selection */
::selection { background: rgba(0,191,99,0.2); color: var(--text-primary); }

/* 43. Print */
@media print {
  .header, .footer, .sticky-cta, .nav-mobile { display: none !important; }
  body { color: #000; background: #fff; }
}

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