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

:root {
  --bg: #0b0b18;
  --bg2: #121220;
  --bg3: #1a1a2e;
  --bg4: #22223a;
  --accent: #ff6b00;
  --accent2: #ff8c00;
  --gold: #f5c340;
  --text: #e0e0f0;
  --text2: #7878a0;
  --green: #00d46a;
  --red: #ff4455;
  --border: rgba(255,107,0,.15);
  --border2: rgba(255,255,255,.07);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.2; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
  background: rgba(11,11,24,.97);
  border-bottom: 1px solid var(--border2);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.logo { font-family: 'Benzin', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo span { color: var(--text); font-weight: 700; }
nav { display: flex; align-items: center; gap: 2px; }
nav a { color: var(--text2); font-size: .82rem; padding: 7px 10px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
nav a:hover { color: var(--text); background: var(--bg3); }
.btn-nav { background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; color: #fff !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px; box-shadow: 0 3px 12px rgba(255,107,0,.35); }
.btn-nav:hover { opacity: .9; color: #fff !important; }

/* Mobile nav */
.mob-btn { display: none; background: none; border: 1px solid var(--border2); border-radius: 8px; cursor: pointer; padding: 7px 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: var(--bg); z-index: 200; flex-direction: column; padding: 70px 24px 32px; gap: 2px; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav a { color: var(--text); font-size: 1rem; padding: 13px 16px; border-radius: 10px; border-bottom: 1px solid var(--border2); }
.mob-nav a:hover { background: var(--bg2); }
.mob-nav .btn-nav { margin-top: 12px; padding: 15px 20px !important; font-size: 1.05rem !important; text-align: center; border-radius: 12px !important; }
.mob-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--text2); font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* Breadcrumb */
.breadcrumb { padding: 13px 0; font-size: .8rem; color: var(--text2); }
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: 'Benzin', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: 10px; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,0,.3);
}
.btn:hover { opacity: .9; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,107,0,.42); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #ffd060); color: #0b0b18; box-shadow: 0 4px 16px rgba(245,195,64,.28); }
.btn-gold:hover { color: #0b0b18; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); box-shadow: none; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { font-size: 1.02rem; padding: 15px 32px; border-radius: 12px; }
.btn-xl { font-size: 1.18rem; padding: 17px 42px; border-radius: 14px; box-shadow: 0 6px 28px rgba(255,107,0,.4); }

/* HERO */
.hero { padding: 60px 0 52px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/banner-hero.png'); background-size: cover; background-position: center; opacity: .1; pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% -5%, rgba(255,107,0,.16) 0%, transparent 60%), radial-gradient(ellipse at 5% 110%, rgba(245,195,64,.07) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,107,0,.1); border: 1px solid rgba(255,107,0,.28); color: var(--accent); font-size: .78rem; font-weight: 700; padding: 6px 13px; border-radius: 20px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.9rem); font-weight: 900; line-height: 1.12; color: #fff; margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 1rem; color: var(--text2); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; max-width: 640px; }
.hero-stat { flex: 1; padding: 16px 10px; text-align: center; border-right: 1px solid var(--border2); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-family: 'Benzin', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--gold); }
.hero-stat span { font-size: .73rem; color: var(--text2); }

/* SECTIONS */
.section { padding: 60px 0; }
.section-sm { padding: 44px 0; }
.section-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
h3 { font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: 7px; }

/* CARDS */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 14px; margin-top: 24px; }
.info-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; transition: border-color .2s, transform .2s; }
.info-card:hover { border-color: rgba(255,107,0,.35); transform: translateY(-2px); }
.info-card p { font-size: .85rem; color: var(--text2); line-height: 1.65; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 28px; }
.feature-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: rgba(255,107,0,.35); transform: translateY(-2px); }
.feature-icon { font-size: 1.85rem; margin-bottom: 12px; }
.feature-card p { font-size: .81rem; color: var(--text2); }

/* GAMES GRID */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; margin-top: 28px; }
.game-card { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg3); border: 1px solid var(--border2); cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.game-card:hover { transform: scale(1.04); border-color: var(--accent); box-shadow: 0 8px 24px rgba(255,107,0,.2); }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 55%, transparent 100%); opacity: 0; display: flex; align-items: flex-end; padding: 10px; transition: opacity .2s; }
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn { background: var(--accent); color: #fff; font-size: .73rem; font-weight: 700; padding: 5px 14px; border-radius: 6px; }
.game-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%); padding: 20px 8px 7px; font-size: .71rem; font-weight: 600; color: #fff; }
.game-badge { position: absolute; top: 6px; left: 6px; background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; text-transform: uppercase; }
.game-badge.hot { background: #e53935; }
.game-badge.new { background: #2196f3; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 28px; }
.step { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px 20px; }
.step-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border-radius: 50%; font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(255,107,0,.28); }
.step p { font-size: .84rem; color: var(--text2); }

/* RATING BARS */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.rating-label { width: 160px; font-size: .84rem; color: var(--text2); flex-shrink: 0; }
.rating-bar { flex: 1; height: 8px; background: var(--bg3); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 4px; }
.rating-val { width: 30px; font-size: .88rem; font-weight: 700; color: var(--gold); text-align: right; }

/* PROMO BANNER */
.promo-banner { background: linear-gradient(135deg, #160a00, #2a1200 50%, #160a00); border: 2px solid rgba(255,107,0,.38); border-radius: 16px; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.promo-banner h2 { color: var(--gold); margin-bottom: 8px; font-size: 1.3rem; }
.promo-banner p { color: var(--text2); font-size: .88rem; }

/* PROMO CODE */
.promo-box { display: inline-flex; align-items: stretch; background: var(--bg3); border: 2px solid var(--gold); border-radius: 10px; overflow: hidden; }
.promo-code { padding: 13px 20px; font-family: 'Benzin', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--gold); letter-spacing: .1em; }
.promo-copy-btn { padding: 13px 18px; background: var(--gold); color: #0b0b18; font-weight: 700; cursor: pointer; border: none; font-size: .86rem; transition: background .2s; }
.promo-copy-btn:hover { background: #ffd060; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 5px; margin-top: 24px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(255,107,0,.28); }
.faq-q { padding: 17px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: .9rem; transition: color .2s; user-select: none; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 17px; color: var(--text2); font-size: .87rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 14px; margin-top: 28px; }
.review-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-family: 'Benzin', sans-serif; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; color: #fff; font-size: .88rem; }
.review-date { font-size: .73rem; color: var(--text2); }
.review-stars { color: var(--gold); font-size: .86rem; margin-bottom: 10px; }
.review-text { font-size: .86rem; color: var(--text2); line-height: 1.65; }

/* TOP PICK CARD */
.top-card { background: var(--bg2); border: 2px solid rgba(245,195,64,.4); border-radius: 16px; padding: 28px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.top-card-left { flex: 1; min-width: 220px; }
.top-card-right { flex: 1; min-width: 220px; }
.casino-name-big { font-family: 'Benzin', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 7px; }
.stars-line { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: .74rem; font-weight: 600; }
.tag.g { background: rgba(0,212,106,.1); color: var(--green); border: 1px solid rgba(0,212,106,.18); }
.tag.o { background: rgba(255,107,0,.1); color: var(--accent); border: 1px solid rgba(255,107,0,.2); }
.tag.y { background: rgba(245,195,64,.1); color: var(--gold); border: 1px solid rgba(245,195,64,.18); }
.bonus-card { background: rgba(255,107,0,.07); border: 1px solid rgba(255,107,0,.2); border-radius: 10px; padding: 15px 18px; margin-bottom: 16px; }
.bonus-card span { font-size: .78rem; color: var(--text2); display: block; }
.bonus-card strong { font-family: 'Benzin', sans-serif; font-size: 1.45rem; color: var(--gold); display: block; margin: 4px 0; }

/* UTILS */
.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 */
.table-wrap { overflow-x: auto; margin-top: 24px; }
table.data { width: 100%; border-collapse: collapse; min-width: 480px; }
table.data th { background: var(--bg3); padding: 11px 14px; text-align: left; font-size: .76rem; color: var(--text2); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border2); white-space: nowrap; }
table.data td { padding: 13px 14px; border-bottom: 1px solid var(--border2); font-size: .87rem; vertical-align: middle; }
table.data tr.highlight td { background: rgba(255,107,0,.05); }
table.data tr:hover td { background: var(--bg3); }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border2); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: .82rem; color: var(--text2); margin-bottom: 14px; line-height: 1.6; }
.footer-disclaimer { font-size: .75rem; color: var(--text2); line-height: 1.55; }
.footer-col h4 { color: #fff; font-size: .86rem; font-weight: 700; margin-bottom: 13px; }
.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 { border-top: 1px solid var(--border2); padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 38px 0 34px; }
  .hero h1 { font-size: 1.52rem; }
  .hero-stats { flex-wrap: wrap; max-width: 100%; }
  .hero-stat { flex: 0 0 50%; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border2); }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border2); }
  .section { padding: 42px 0; }
  .section-sm { padding: 30px 0; }
  .steps { grid-template-columns: 1fr; }
  .promo-banner { padding: 22px 18px; flex-direction: column; }
  .top-card { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border2) !important; }
  .hero-stat:last-child { border-bottom: none !important; }
  .btn-xl { font-size: .98rem; padding: 14px 26px; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
