/* Cat Casino — Янтарный кот | catcasino-vjg.top | ab- namespace */
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400&family=Poppins:wght@400;500&display=swap');

:root {
  --bg: #120800;
  --bg2: #1e1000;
  --bd: #3d2000;
  --pr: #e65100;
  --go: #ffc107;
  --tx: #fff8e1;
  --mu: #a06020;
  --wh: #fffde7;
  --font-h: 'Arvo', Georgia, serif;
  --font-b: 'Poppins', system-ui, sans-serif;
  --radius: 10px;
  --tr: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--go); text-decoration: none; transition: opacity var(--tr); }
a:hover { opacity: 0.82; }

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

/* ── LAYOUT ── */
.ab-container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.ab-header {
  background: var(--bg2);
  border-bottom: 2px solid var(--go);
  position: sticky; top: 0; z-index: 100;
}
.ab-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1120px; margin: 0 auto;
}
.ab-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--go);
  letter-spacing: 0.04em;
}
.ab-logo span { color: var(--tx); }
.ab-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.ab-nav a {
  color: var(--mu);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.ab-nav a:hover { color: var(--go); opacity: 1; }
.ab-cta-btn {
  background: var(--go);
  color: var(--bg) !important;
  padding: 9px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: filter var(--tr);
}
.ab-cta-btn:hover { filter: brightness(1.1); opacity: 1; }

/* ── HERO ── */
.ab-hero {
  background: linear-gradient(160deg, var(--bg2) 0%, #3d1a00 55%, #1e0800 100%);
  padding: 72px 20px 60px;
  text-align: center;
}
.ab-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--wh);
  line-height: 1.28;
  margin-bottom: 18px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.ab-hero-sub {
  font-size: 1.08rem;
  color: var(--mu);
  max-width: 680px;
  margin: 0 auto 36px;
}
.ab-hero-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.ab-tile {
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.28);
  border-radius: var(--radius);
  padding: 18px 12px;
}
.ab-tile-val {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--go);
}
.ab-tile-lbl {
  font-size: 0.8rem;
  color: var(--mu);
  margin-top: 4px;
  line-height: 1.3;
}
.ab-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.ab-kpi {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 14px 10px;
}
.ab-kpi-n {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wh);
}
.ab-kpi-t {
  font-size: 0.78rem;
  color: var(--mu);
  margin-top: 3px;
}
.ab-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ab-btn-primary {
  background: var(--go);
  color: var(--bg);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  transition: filter var(--tr);
}
.ab-btn-primary:hover { filter: brightness(1.1); opacity: 1; }
.ab-btn-secondary {
  border: 2px solid var(--go);
  color: var(--go);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
}

/* ── SECTIONS ── */
.ab-section { padding: 60px 20px; }
.ab-section:nth-child(even) { background: var(--bg2); }
.ab-section-title {
  font-family: var(--font-h);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 32px;
  text-align: center;
}
.ab-section-title span { color: var(--go); }

/* ── ABOUT CARDS ── */
.ab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.ab-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color var(--tr), transform var(--tr);
}
.ab-card:hover { border-color: var(--go); transform: translateY(-3px); }
.ab-card-icon { font-size: 2rem; margin-bottom: 12px; }
.ab-card-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 10px;
}
.ab-card-text { font-size: 0.9rem; color: var(--mu); line-height: 1.65; }

/* ── REGISTER ── */
.ab-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.ab-step {
  background: var(--bg);
  border-left: 4px solid var(--pr);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.ab-step-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pr);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.ab-step-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--wh); margin-bottom: 8px; }
.ab-step-text { font-size: 0.88rem; color: var(--mu); }

/* ── BONUS ── */
.ab-bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.ab-bonus-card {
  background: linear-gradient(135deg, var(--bg2) 0%, #2a1200 100%);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.ab-bonus-dep { font-size: 0.8rem; color: var(--mu); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.ab-bonus-pct {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--go);
  line-height: 1;
}
.ab-bonus-amt { font-size: 1.1rem; color: var(--wh); margin: 8px 0 4px; font-weight: 500; }
.ab-bonus-fs { font-size: 0.85rem; color: var(--mu); }

/* ── CATALOG / SLOTS ── */
.ab-catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.ab-slot {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: border-color var(--tr);
}
.ab-slot:hover { border-color: var(--go); }
.ab-slot-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--wh); margin-bottom: 6px; }
.ab-slot-studio { font-size: 0.78rem; color: var(--pr); margin-bottom: 8px; letter-spacing: 0.04em; }
.ab-slot-rtp {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  color: var(--go);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.ab-slot-mechanic { font-size: 0.8rem; color: var(--mu); }
.ab-slot-max { font-size: 0.78rem; color: var(--pr); margin-top: 4px; }

/* ── LIVE ── */
.ab-live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.ab-live-item {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 24px 18px;
  border-top: 3px solid var(--pr);
}
.ab-live-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--wh); margin-bottom: 6px; }
.ab-live-prov { font-size: 0.82rem; color: var(--go); }
.ab-live-badge {
  display: inline-block;
  background: var(--pr);
  color: var(--wh);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ── VIP TABLE ── */
.ab-vip-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ab-vip-table th {
  background: #3d1a00;
  color: var(--go);
  font-family: var(--font-h);
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.04em;
}
.ab-vip-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx);
}
.ab-vip-table tr:hover td { background: rgba(255,193,7,0.05); }
.ab-vip-level { color: var(--go); font-weight: 600; }

/* ── TOURNAMENT ── */
.ab-tourn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.ab-prize-card {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.ab-prize-pos { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--go); margin-bottom: 8px; }
.ab-prize-amt { font-size: 1.15rem; color: var(--wh); margin-bottom: 6px; }
.ab-prize-fs { font-size: 0.85rem; color: var(--mu); }

/* ── CASHIER ── */
.ab-cashier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ab-cashier-col h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--wh); margin-bottom: 16px; }
.ab-method-list { list-style: none; }
.ab-method-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--bd);
  font-size: 0.9rem;
}
.ab-method-list li:last-child { border-bottom: none; }
.ab-method-name { color: var(--wh); }
.ab-method-time { color: var(--go); font-size: 0.82rem; }

/* ── REVIEWS ── */
.ab-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.ab-review {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.ab-review-stars { color: var(--go); font-size: 1.1rem; margin-bottom: 10px; }
.ab-review-text { font-size: 0.9rem; color: var(--tx); line-height: 1.65; margin-bottom: 14px; }
.ab-review-author { font-size: 0.82rem; color: var(--mu); }

/* ── TRUST ── */
.ab-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.ab-trust-item {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.ab-trust-icon { font-size: 2rem; margin-bottom: 10px; }
.ab-trust-title { font-family: var(--font-h); font-size: 0.92rem; font-weight: 700; color: var(--wh); margin-bottom: 6px; }
.ab-trust-val { font-size: 0.82rem; color: var(--mu); }

/* ── FAQ ── */
.ab-faq { max-width: 820px; margin: 0 auto; }
.ab-faq-item { border-bottom: 1px solid var(--bd); padding: 18px 0; }
.ab-faq-q {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wh);
  cursor: pointer;
  padding-right: 24px;
  position: relative;
}
.ab-faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  color: var(--go);
  font-size: 1.3rem;
  font-weight: 400;
}
.ab-faq-a { font-size: 0.9rem; color: var(--mu); margin-top: 10px; line-height: 1.7; }

/* ── AUTHOR NOTE ── */
.ab-author {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--mu);
  line-height: 1.7;
}
.ab-author-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--wh); margin-bottom: 10px; }

/* ── RTP HIGHLIGHT ── */
.ab-rtp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 0.9rem;
}
.ab-rtp-row:last-child { border-bottom: none; }
.ab-rtp-label { color: var(--tx); }
.ab-rtp-value { color: var(--go); font-weight: 700; font-family: var(--font-h); }

/* ── FOOTER ── */
.ab-footer {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: 40px 20px 24px;
  text-align: center;
  color: var(--mu);
  font-size: 0.82rem;
}
.ab-footer-logo { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--go); margin-bottom: 14px; }
.ab-footer-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.ab-footer-links a { color: var(--mu); font-size: 0.82rem; }
.ab-footer-links a:hover { color: var(--go); opacity: 1; }
.ab-footer-legal { max-width: 780px; margin: 0 auto; line-height: 1.65; }
.ab-footer-legal p { margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ab-hero-tiles, .ab-kpis { grid-template-columns: repeat(2, 1fr); }
  .ab-cashier-grid { grid-template-columns: 1fr; }
  .ab-nav { display: none; }
  .ab-hero { padding: 48px 16px 40px; }
}
@media (max-width: 480px) {
  .ab-hero-tiles, .ab-kpis { grid-template-columns: repeat(2, 1fr); }
}
