@font-face {
  font-family: 'Benzin';
  src: url('../BenzinBold.woff2') format('woff2');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --bg: #07111f;
  --bg-deep: #040a13;
  --bg2: #0c1a2c;
  --bg3: #10243a;
  --bg4: #17314b;
  --surface: rgba(14, 34, 54, .78);
  --surface-strong: #102940;
  --accent: #63e6be;
  --accent-strong: #23c99a;
  --gold: #ffd166;
  --text: #f4f8fb;
  --text2: #9eb2c5;
  --muted: #6f879c;
  --green: #63e6be;
  --red: #ff7181;
  --border: rgba(99, 230, 190, .24);
  --border2: rgba(176, 207, 230, .14);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 85% 0%, rgba(35, 201, 154, .13), transparent 32rem),
    radial-gradient(circle at 0% 30%, rgba(255, 209, 102, .06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s, opacity .2s, transform .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Benzin', Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.18; letter-spacing: -.025em; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

header { position: sticky; top: 0; z-index: 100; background: rgba(4, 10, 19, .78); border-bottom: 1px solid var(--border2); backdrop-filter: blur(22px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-family: 'Benzin', sans-serif; font-size: 1.13rem; letter-spacing: -.03em; white-space: nowrap; }
.logo::first-letter { filter: drop-shadow(0 0 9px rgba(255, 209, 102, .6)); }
.logo span { color: var(--accent); }
.logo img { width: 38px; height: 38px; flex: 0 0 38px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 4px 10px rgba(35, 201, 154, .2)); }
nav { display: flex; align-items: center; gap: 3px; }
nav a { padding: 9px 11px; border-radius: 10px; color: var(--text2); font-size: .8rem; white-space: nowrap; }
nav a:hover { color: var(--text); background: rgba(99, 230, 190, .09); }
.btn-nav { background: var(--accent) !important; color: #052018 !important; font-weight: 800 !important; padding: 10px 17px !important; box-shadow: 0 8px 22px rgba(35, 201, 154, .18); }
.btn-nav:hover { color: #052018 !important; opacity: .88; transform: translateY(-1px); }
.mob-btn { display: none; border: 1px solid var(--border2); background: rgba(255,255,255,.04); border-radius: 12px; cursor: pointer; padding: 9px; flex-direction: column; gap: 5px; }
.mob-btn span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; }
.mob-nav { display: none; position: fixed; inset: 0; background: rgba(4, 10, 19, .98); z-index: 200; flex-direction: column; padding: 86px 24px 32px; gap: 4px; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav a { color: var(--text); font-size: 1rem; padding: 14px 16px; border: 1px solid transparent; border-bottom-color: var(--border2); border-radius: 12px; }
.mob-nav a:hover { background: var(--bg2); border-color: var(--border2); }
.mob-nav .btn-nav { margin-top: 12px; padding: 15px 20px !important; text-align: center; border-radius: 12px !important; }
.mob-close { position: absolute; top: 22px; right: 22px; border: 0; background: none; color: var(--text2); font-size: 1.6rem; cursor: pointer; }

.breadcrumb { padding: 17px 0; color: var(--muted); font-size: .78rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: #052018; font-family: 'Benzin', sans-serif; font-weight: 800; font-size: .88rem; padding: 13px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; cursor: pointer; transition: opacity .2s, transform .2s, box-shadow .2s; text-decoration: none; white-space: nowrap; box-shadow: 0 9px 24px rgba(35, 201, 154, .16); }
.btn:hover { color: #052018; opacity: .9; transform: translateY(-2px); box-shadow: 0 13px 30px rgba(35, 201, 154, .23); }
.btn-gold { background: var(--gold); color: #181303; box-shadow: 0 9px 24px rgba(255, 209, 102, .16); }
.btn-gold:hover { color: #181303; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--accent); box-shadow: none; }
.btn-outline:hover { background: rgba(99, 230, 190, .1); color: var(--accent); }
.btn-lg { font-size: .95rem; padding: 15px 28px; border-radius: 14px; }
.btn-xl { font-size: 1rem; padding: 17px 32px; border-radius: 15px; }

.hero { position: relative; overflow: hidden; padding: 88px 0 68px; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; opacity: .1; pointer-events: none; background-image: radial-gradient(circle at 78% 22%, rgba(99, 230, 190, .7) 0, transparent 18%), radial-gradient(circle at 63% 65%, rgba(255, 209, 102, .5) 0, transparent 14%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 70% -10%, rgba(99,230,190,.2), transparent 52%), linear-gradient(120deg, transparent 20%, rgba(255,255,255,.025) 50%, transparent 80%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px; padding: 7px 13px; border: 1px solid rgba(99,230,190,.28); border-radius: 30px; background: rgba(99,230,190,.08); color: var(--accent); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero h1 { max-width: 820px; color: #fff; font-size: clamp(2rem, 5vw, 4.1rem); font-weight: 900; line-height: 1.08; margin-bottom: 22px; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { max-width: 675px; margin-bottom: 34px; color: var(--text2); font-size: 1.04rem; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 52px; }
.hero-stats { display: flex; max-width: 700px; overflow: hidden; border: 1px solid var(--border2); border-radius: 17px; background: rgba(12,26,44,.82); box-shadow: var(--shadow); }
.hero-stat { flex: 1; padding: 18px 14px; text-align: center; border-right: 1px solid var(--border2); }
.hero-stat:last-child { border-right: 0; }
.hero-stat strong { display: block; color: var(--gold); font-family: 'Benzin', sans-serif; font-size: 1.3rem; font-weight: 900; }
.hero-stat span { color: var(--muted); font-size: .72rem; }

.section { padding: 76px 0; }
.section-sm { padding: 58px 0; }
.section-label { margin-bottom: 10px; color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h2 { margin-bottom: 12px; color: #fff; font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 900; }
h3 { margin-bottom: 8px; color: #fff; font-size: 1rem; font-weight: 800; }

.info-grid, .features-grid, .steps, .reviews-grid { display: grid; gap: 16px; margin-top: 28px; }
.info-grid { grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.steps { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.info-card, .feature-card, .step, .review-card { background: linear-gradient(145deg, rgba(16,36,58,.92), rgba(8,22,37,.9)); border: 1px solid var(--border2); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.info-card, .step, .review-card { padding: 24px; }
.feature-card { padding: 24px 18px; text-align: center; }
.info-card:hover, .feature-card:hover, .step:hover, .review-card:hover { border-color: var(--border); transform: translateY(-3px); transition: transform .2s, border-color .2s; }
.info-card p, .feature-card p, .step p { color: var(--text2); font-size: .86rem; line-height: 1.7; }
.feature-icon { margin-bottom: 13px; font-size: 1.8rem; }

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; margin-top: 28px; }
.game-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg3), var(--bg2)); border: 1px solid var(--border2); border-radius: 14px; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.game-card:hover { border-color: var(--accent); transform: translateY(-4px) scale(1.015); box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 10px; background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.05) 65%, transparent); opacity: 0; transition: opacity .2s; }
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn { padding: 5px 14px; border-radius: 7px; background: var(--accent); color: #052018; font-size: .72rem; font-weight: 800; }
.game-name { position: absolute; right: 0; bottom: 0; left: 0; padding: 22px 10px 8px; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent); color: #fff; font-size: .72rem; font-weight: 700; }
.game-badge { position: absolute; top: 8px; left: 8px; padding: 3px 8px; border-radius: 20px; background: var(--accent); color: #052018; font-size: .58rem; font-weight: 900; text-transform: uppercase; }
.game-badge.hot { background: var(--red); color: #fff; }
.game-badge.new { background: #79b8ff; color: #07111f; }

.step-num { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 16px; border-radius: 13px; background: var(--accent); color: #052018; font-family: 'Benzin', sans-serif; font-size: 1.05rem; font-weight: 900; box-shadow: 0 8px 20px rgba(35,201,154,.17); }
.rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rating-label { width: 170px; flex-shrink: 0; color: var(--text2); font-size: .84rem; }
.rating-bar { flex: 1; height: 8px; overflow: hidden; border-radius: 99px; background: var(--bg3); }
.rating-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent-strong), var(--gold)); }
.rating-val { width: 32px; color: var(--gold); font-size: .86rem; font-weight: 800; text-align: right; }

.promo-banner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 30px 34px; border: 1px solid rgba(99,230,190,.28); border-radius: 20px; background: linear-gradient(135deg, rgba(19,71,75,.84), rgba(13,33,52,.95)); box-shadow: var(--shadow); }
.promo-banner h2 { margin-bottom: 8px; color: var(--gold); font-size: 1.35rem; }
.promo-banner p { color: var(--text2); font-size: .88rem; }
.promo-box { display: inline-flex; align-items: stretch; overflow: hidden; border: 1px solid var(--gold); border-radius: 11px; background: var(--bg3); }
.promo-code { padding: 13px 20px; color: var(--gold); font-family: 'Benzin', sans-serif; font-size: 1.35rem; font-weight: 900; letter-spacing: .1em; }
.promo-copy-btn { padding: 13px 18px; border: 0; background: var(--gold); color: #181303; cursor: pointer; font-size: .84rem; font-weight: 800; }
.promo-copy-btn:hover { background: #ffe29a; }

.faq { display: flex; flex-direction: column; gap: 8px; margin-top: 26px; }
.faq-item { overflow: hidden; border: 1px solid var(--border2); border-radius: 14px; background: rgba(12,26,44,.85); }
.faq-item.open { border-color: var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 21px; color: var(--text); cursor: pointer; font-size: .9rem; font-weight: 700; user-select: none; }
.faq-q::after { content: '+'; flex-shrink: 0; color: var(--accent); font-size: 1.35rem; transition: transform .25s; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 21px 18px; color: var(--text2); font-size: .87rem; line-height: 1.72; }
.faq-item.open .faq-a { display: block; }

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-ava { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--accent); color: #052018; font-family: 'Benzin', sans-serif; font-size: 1rem; font-weight: 800; }
.review-name { color: #fff; font-size: .88rem; font-weight: 800; }
.review-date { color: var(--muted); font-size: .73rem; }
.review-stars { margin-bottom: 10px; color: var(--gold); font-size: .86rem; }
.review-text { color: var(--text2); font-size: .86rem; line-height: 1.65; }

.top-card { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 26px; padding: 30px; border: 1px solid rgba(255,209,102,.42); border-radius: 20px; background: linear-gradient(145deg, rgba(24,44,59,.95), rgba(11,26,43,.94)); box-shadow: var(--shadow); }
.top-card-left, .top-card-right { flex: 1; min-width: 220px; }
.casino-name-big { margin-bottom: 7px; color: #fff; font-family: 'Benzin', sans-serif; font-size: 1.55rem; font-weight: 900; }
.stars-line { margin-bottom: 14px; color: var(--gold); font-size: 1rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { display: inline-block; padding: 5px 10px; border-radius: 7px; font-size: .73rem; font-weight: 700; }
.tag.g { border: 1px solid rgba(99,230,190,.2); background: rgba(99,230,190,.1); color: var(--green); }
.tag.o { border: 1px solid rgba(255,209,102,.2); background: rgba(255,209,102,.1); color: var(--gold); }
.tag.y { border: 1px solid rgba(255,209,102,.2); background: rgba(255,209,102,.1); color: var(--gold); }
.bonus-card { margin-bottom: 16px; padding: 17px 19px; border: 1px solid rgba(99,230,190,.2); border-radius: 12px; background: rgba(99,230,190,.08); }
.bonus-card span { display: block; color: var(--text2); font-size: .78rem; }
.bonus-card strong { display: block; margin: 4px 0; color: var(--gold); font-family: 'Benzin', sans-serif; font-size: 1.35rem; }

.green { color: var(--green); } .gold { color: var(--gold); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .text-center { text-align: center; }
.table-wrap { overflow-x: auto; margin-top: 24px; border: 1px solid var(--border2); border-radius: 14px; }
table.data { width: 100%; min-width: 480px; border-collapse: collapse; }
table.data th { padding: 13px 14px; border-bottom: 1px solid var(--border2); background: var(--bg3); color: var(--text2); font-size: .74rem; letter-spacing: .07em; text-align: left; text-transform: uppercase; white-space: nowrap; }
table.data td { padding: 14px; border-bottom: 1px solid var(--border2); font-size: .87rem; vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr.highlight td { background: rgba(99,230,190,.05); }
table.data tr:hover td { background: rgba(255,255,255,.035); }

footer { padding: 58px 0 24px; border-top: 1px solid var(--border2); background: rgba(4,10,19,.8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 36px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--gold); font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 5px 12px rgba(35, 201, 154, .22)); }
.footer-desc, .footer-disclaimer { color: var(--text2); font-size: .81rem; line-height: 1.65; }
.footer-desc { margin-bottom: 14px; }
.footer-col h4 { margin-bottom: 14px; color: #fff; font-size: .86rem; font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: var(--text2); font-size: .82rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border2); }
.footer-bottom p { color: var(--muted); font-size: .75rem; }

@media (max-width: 980px) {
  nav a:not(.btn-nav) { padding-inline: 7px; font-size: .75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { width: min(100% - 32px, 620px); }
  header { position: sticky; }
  .header-inner { min-height: 66px; }
  nav { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 58px 0 44px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.7rem); }
  .hero-desc { font-size: .96rem; }
  .hero-stats { max-width: 100%; flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border2); }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border2); }
  .section { padding: 48px 0; }
  .section-sm { padding: 38px 0; }
  .steps { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .top-card { flex-direction: column; align-items: stretch; padding: 22px; }
  .top-card-right { min-width: 0; }
  .rating-label { width: 135px; font-size: .76rem; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}
@media (max-width: 540px) {
  .container { width: calc(100% - 28px); }
  .logo { gap: 8px; font-size: .96rem; }
  .logo img { width: 32px; height: 32px; flex-basis: 32px; }
  .hero { padding-top: 44px; }
  .hero-badge { font-size: .64rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }
  .hero-stats { flex-direction: column; }
  .hero-stat { flex: 1 1 auto; border-right: 0 !important; border-bottom: 1px solid var(--border2) !important; }
  .hero-stat:last-child { border-bottom: 0 !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rating-row { gap: 8px; }
  .rating-label { width: 105px; }
  .promo-box { width: 100%; }
  .promo-code { flex: 1; font-size: 1.1rem; text-align: center; }
  .promo-copy-btn { padding-inline: 12px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
