:root {
  --bg: #0D141B;
  --bg-soft: #111A24;
  --surface: #15202A;
  --surface-2: #1B2833;
  --border: #24333F;
  --accent: #1DABDD;
  --accent-2: #3EE0FF;
  --gold: #F5B301;
  --gold-2: #FFC94D;
  --text: #FFFFFF;
  --text-2: #A7B6C1;
  --text-3: #6E7D89;
  --danger: #E5484D;
  --radius: 4px;
  --bs-border-radius: 4px;
  --bs-border-radius-sm: 4px;
  --bs-border-radius-lg: 4px;
  --bs-border-radius-xl: 4px;
  --bs-border-radius-xxl: 4px;
  --bs-border-radius-pill: 4px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading { font-family: 'Montserrat', sans-serif; }
.accent { color: var(--accent-2); }
.gold { color: var(--gold-2); }
.text-muted-2 { color: var(--text-3) !important; }

/* Buttons */
.btn { border-radius: var(--radius); font-weight: 600; }
.btn-gold {
  background: var(--gold);
  color: #0D141B;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: .2s;
}
.btn-gold:hover { background: var(--gold-2); color: #0D141B; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: .2s;
}
.btn-accent:hover { background: var(--accent-2); color: #0D141B; }
.btn-accent-outline {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: .2s;
}
.btn-accent-outline:hover { background: rgba(29,171,221,.12); color: var(--accent-2); }

/* Navbar */
.navbar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 0; }
.navbar .nav-link { color: var(--text-2); font-weight: 500; margin: 0 6px; padding: 8px 12px; border-radius: var(--radius); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--text); }
.navbar .nav-link.active { color: var(--accent-2); }
.navbar-brand img { height: 34px; }
.navbar-toggler { border-color: var(--border); border-radius: var(--radius); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23A7B6C1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Sections */
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--accent-2); text-transform: uppercase; }
.section-title { font-size: 40px; font-weight: 800; line-height: 1.15; }
.section-desc { color: var(--text-2); font-size: 16px; line-height: 1.6; }

/* Page header (subpages) */
.page-header {
  position: relative;
  background: linear-gradient(180deg, rgba(13,20,27,.94) 0%, rgba(13,20,27,.7) 100%), url('../img/banner.webp') center/cover no-repeat;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 44px; font-weight: 800; }
.breadcrumb { --bs-breadcrumb-divider-color: var(--text-3); }
.breadcrumb a { color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb .active { color: var(--text-3); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(13,20,27,.95) 0%, rgba(13,20,27,.55) 100%), url('../img/banner.webp') center/cover no-repeat;
  padding: 80px 0 64px;
}
.hero h1 { font-size: 64px; font-weight: 800; line-height: 1.05; }
.hero .hero-bonus { font-size: 26px; font-weight: 700; }
.badge-mirror { background: rgba(29,171,221,.15); border: 1px solid var(--accent); color: var(--accent-2); font-weight: 600; font-size: 13px; padding: 8px 16px; border-radius: var(--radius); }
.stat-num { font-family: 'Montserrat'; font-weight: 800; font-size: 30px; color: var(--accent-2); line-height: 1; }
.stat-label { color: var(--text-3); font-size: 13px; }

/* Cards */
.card-dark {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card-dark.highlight { border-color: var(--gold); }
.card-head { padding: 18px 22px; border-bottom: 1px solid var(--border); }
.card-body-dark { padding: 22px; }

.bonus-card { padding: 24px; height: 100%; }
.bonus-card .value { font-family: 'Montserrat'; font-weight: 800; font-size: 26px; line-height: 1.1; color: var(--accent-2); }
.bonus-card.highlight .value { color: var(--gold-2); }
.bonus-card .dep-label { font-size: 13px; font-weight: 600; color: var(--text-3); }
.bonus-card .desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.bonus-badge { display: inline-block; background: rgba(245,179,1,.15); color: var(--gold-2); border: 1px solid rgba(245,179,1,.4); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .5px; }

.info-card { padding: 24px; height: 100%; }
.info-card h5 { font-size: 18px; font-weight: 700; }
.info-row { padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .key { font-size: 12px; font-weight: 600; color: var(--text-3); letter-spacing: .3px; }
.info-row .val { font-size: 14px; color: var(--text); line-height: 1.45; }

.step-card, .feature-card { padding: 26px; height: 100%; }
.step-num { font-family: 'Montserrat'; font-weight: 800; font-size: 40px; line-height: 1; color: var(--accent-2); }
.icon-circle { width: 52px; height: 52px; border-radius: var(--radius); background: rgba(29,171,221,.15); display: flex; align-items: center; justify-content: center; color: var(--accent-2); }

/* Game cards */
.game-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.game-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.game-card .cover { height: 150px; position: relative; background-color: var(--surface-2); background-size: cover; background-position: center; }
.game-card .cover .g-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(13,20,27,.35); opacity: 0; transition: .2s; color: #fff; font-weight: 700; font-size: 14px; }
.game-card:hover .cover .g-play { opacity: 1; }
.game-card .meta { padding: 12px 14px; border-top: 1px solid var(--border); }
.game-card .meta .name { font-weight: 600; font-size: 15px; }
.game-card .meta .prov { font-size: 12px; color: var(--text-3); }
.game-card .badge-cat { position: absolute; top: 8px; left: 8px; background: rgba(13,20,27,.85); color: var(--accent-2); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .5px; }

/* Filter chips / pills */
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  transition: .15s;
}
.chip:hover { color: var(--text); border-color: var(--accent); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Tables */
.table-dark { --bs-table-bg: transparent; --bs-table-color: var(--text); --bs-table-border-color: var(--border); }
.table-dark th { color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); font-weight: 600; }
.table-dark td { font-size: 14px; color: var(--text-2); vertical-align: middle; }
.table-dark tr:last-child td { border-bottom: none; }

/* FAQ accordion */
.accordion-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { background: var(--surface); color: var(--text); font-weight: 700; font-family: 'Montserrat'; padding: 18px 20px; box-shadow: none !important; border-radius: var(--radius) !important; }
.accordion-button:not(.collapsed) { background: var(--surface); color: var(--accent-2); }
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: invert(1); }
.accordion-body { color: var(--text-2); font-size: 14px; line-height: 1.55; padding: 0 20px 18px; }

/* Reviews */
.review-card { padding: 22px; height: 100%; }
.review-card .stars { color: var(--gold-2); letter-spacing: 2px; }
.review-card .who { font-size: 12px; color: var(--text-3); }
.review-card .text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.rating-big { font-family: 'Montserrat'; font-weight: 800; font-size: 56px; line-height: 1; color: var(--gold-2); }
.rating-stars { color: var(--gold-2); font-size: 20px; letter-spacing: 2px; }

/* Progress bars */
.progress { background: var(--surface-2); border-radius: var(--radius); height: 8px; }
.progress-bar { background: var(--accent); border-radius: var(--radius); }
.progress-bar.gold { background: var(--gold); }

/* Footer */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 44px 0; }
footer .nav-link { color: var(--text-2); font-size: 14px; padding: 4px 8px; }
footer .nav-link:hover { color: var(--text); }
.age-pill { background: var(--surface); border: 1px solid var(--border); color: var(--gold-2); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: var(--radius); }
.gamble-logo { max-width: 85px; height: 24px; object-fit: contain; opacity: .8; }

/* Providers */
.provider-logo { height: 24px; object-fit: contain; }

/* Responsive */
@media (max-width: 991px) {
  .navbar .nav-link { margin: 0; }
  .navbar-collapse { padding: 12px 0; }
}
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 30px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 30px; }
  .hero .hero-bonus { font-size: 19px; }
  .stat-num { font-size: 22px; }
}
