@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&display=swap');

/* =====================================================
   VARIABLES
   ===================================================== */
:root {
  --sec-bg:          #0C1018;
  --sec-surface:     #131927;
  --sec-surface-2:   #1A2235;
  --sec-surface-3:   #222E44;
  --sec-border:      #283348;
  --sec-primary:     #F59E0B;
  --sec-primary-h:   #D97706;
  --sec-primary-glow:rgba(245,158,11,.18);
  --sec-accent:      #22C55E;
  --sec-red:         #EF4444;
  --sec-text:        #E4E9F4;
  --sec-text-muted:  #7D8EAD;
  --sec-text-dim:    #4D5E7A;
  --sec-radius:      10px;
  --sec-radius-sm:   6px;
  --sec-radius-lg:   16px;
  --sec-shadow:      0 4px 24px rgba(0,0,0,.4);
  --sec-max:         1140px;
  --sec-gap:         24px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--sec-bg);
  color: var(--sec-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sec-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.sec-h1 { font-size: clamp(1.6rem,4vw,2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
.sec-h2 { font-size: clamp(1.3rem,3vw,2rem); font-weight: 800; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 12px; }
.sec-h3 { font-size: clamp(1.05rem,2.5vw,1.35rem); font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.sec-intro { font-size: 1.05rem; color: var(--sec-text-muted); margin-bottom: 32px; max-width: 680px; }
.sec-label { font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sec-primary); margin-bottom: 8px; display: block; }

/* =====================================================
   LAYOUT WRAPPERS
   ===================================================== */
.sec-wrap { max-width: var(--sec-max); margin: 0 auto; padding: 0 20px; }
.sec-section { padding: 72px 0; }
.sec-section--alt { background: var(--sec-surface); }
.sec-section--dark { background: var(--sec-surface-2); }

/* =====================================================
   BUTTONS
   ===================================================== */
.sec-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 28px; border-radius: var(--sec-radius); font-weight: 700;
  font-size: 0.95rem; transition: all .2s; cursor: pointer; white-space: nowrap;
  border: 1.5px solid transparent; text-decoration: none;
}
.sec-btn--primary {
  background: var(--sec-primary); border-color: var(--sec-primary);
  color: #0C1018; -webkit-text-fill-color: #0C1018;
}
.sec-btn--primary:hover {
  background: var(--sec-primary-h); border-color: var(--sec-primary-h);
  color: #0C1018; -webkit-text-fill-color: #0C1018; text-decoration: none;
}
.sec-btn--ghost {
  background: transparent; color: var(--sec-text); border-color: var(--sec-border);
}
.sec-btn--ghost:hover { border-color: var(--sec-primary); color: var(--sec-primary); text-decoration: none; }
.sec-btn--outline {
  background: transparent; color: var(--sec-primary); border-color: var(--sec-primary);
}
.sec-btn--outline:hover { background: var(--sec-primary); color: #0C1018; text-decoration: none; }
.sec-btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.sec-btn--full { width: 100%; }
.sec-btn--sm { padding: 8px 18px; font-size: 0.85rem; }

/* =====================================================
   HEADER
   ===================================================== */
.sec-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(12,16,24,.97);
  border-bottom: 1px solid var(--sec-border);
  backdrop-filter: blur(8px);
}
.sec-header__bar {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 20px; max-width: var(--sec-max); margin: 0 auto;
}
.sec-head__left { display: flex; align-items: center; gap: 12px; }
.sec-logo { display: flex; align-items: center; flex-shrink: 0; }
.sec-logo img { height: 36px; width: auto; }

.sec-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1.5px solid var(--sec-border); border-radius: var(--sec-radius-sm);
  transition: border-color .2s;
}
.sec-burger:hover { border-color: var(--sec-primary); }
.sec-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--sec-text); border-radius: 2px; transition: all .3s;
}

.sec-nav { flex: 1; display: flex; justify-content: center; }
.sec-nav ul { display: flex; align-items: center; gap: 4px; }
.sec-nav a {
  padding: 8px 12px; border-radius: var(--sec-radius-sm); font-size: 0.9rem;
  font-weight: 600; color: var(--sec-text-muted); transition: color .2s;
  text-decoration: none; position: relative;
}
.sec-nav a::after {
  content: ''; position: absolute; bottom: 3px; left: 12px; right: 12px;
  height: 2px; background: var(--sec-primary); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.sec-nav a:hover, .sec-nav a.active { color: var(--sec-text); }
.sec-nav a:hover::after, .sec-nav a.active::after { transform: scaleX(1); }

.sec-head__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.sec-head__actions .sec-btn { padding: 8px 18px; font-size: 0.85rem; }

/* Mobile overlay */
.sec-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 950;
  background: rgba(0,0,0,.6); opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.sec-mobile-panel {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 960;
  width: min(300px,88vw); background: var(--sec-surface-2);
  border-right: 1px solid var(--sec-border);
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.sec-mobile-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--sec-border);
}
.sec-mobile-panel__logo img { height: 30px; }
.sec-mobile-panel__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--sec-border); border-radius: var(--sec-radius-sm);
  font-size: 1.2rem; color: var(--sec-text-muted); transition: all .2s;
}
.sec-mobile-panel__close:hover { border-color: var(--sec-red); color: var(--sec-red); }
.sec-mobile-panel__nav { flex: 1; overflow-y: auto; padding: 16px 0; }
.sec-mobile-panel__nav li a {
  display: block; padding: 12px 20px; font-weight: 600; color: var(--sec-text-muted);
  transition: color .2s; font-size: 0.95rem;
}
.sec-mobile-panel__nav li a:hover { color: var(--sec-primary); text-decoration: none; }
.sec-mobile-panel__actions {
  padding: 16px 20px; border-top: 1px solid var(--sec-border);
  display: flex; flex-direction: column; gap: 10px;
}

body.sec-menu-open { overflow: hidden; }
body.sec-menu-open .sec-mobile-overlay { opacity: 1; pointer-events: auto; }
body.sec-menu-open .sec-mobile-panel { transform: translateX(0); }

/* =====================================================
   HERO
   ===================================================== */
.sec-hero {
  position: relative; overflow: hidden; min-height: 520px;
  display: flex; align-items: center;
}
.sec-hero__picture { position: absolute; inset: 0; }
.sec-hero__picture img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.sec-hero__picture::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,16,24,.88) 0%, rgba(12,16,24,.55) 60%, rgba(12,16,24,.2) 100%);
}
.sec-hero__content {
  position: relative; z-index: 2; max-width: var(--sec-max);
  margin: 0 auto; padding: 80px 20px; width: 100%;
}
.sec-hero__inner { }
.sec-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sec-primary-glow); border: 1px solid rgba(245,158,11,.35);
  color: var(--sec-primary); font-size: 0.78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
}
.sec-hero__title { font-size: clamp(1.7rem,5vw,3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; margin-bottom: 18px; }
.sec-hero__sub { font-size: 1.05rem; color: var(--sec-text-muted); margin-bottom: 32px; max-width: 460px; }
.sec-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sec-cta-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.sec-hero__trust { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--sec-text-muted); margin-top: 24px; }
.sec-hero__trust span { color: var(--sec-accent); font-weight: 700; }

/* =====================================================
   QUICK FACTS TABLE
   ===================================================== */
.sec-facts-grid {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: var(--sec-border); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); overflow: hidden;
}
.sec-fact {
  flex: 1 1 calc(50% - 1px); background: var(--sec-surface);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 4px;
}
.sec-fact__key { font-size: 0.78rem; color: var(--sec-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.sec-fact__val { font-size: 0.95rem; font-weight: 700; color: var(--sec-text); }
.sec-fact__val a { color: inherit; }

/* =====================================================
   CARDS & SURFACES
   ===================================================== */
.sec-card {
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 28px;
}
.sec-card--glow { border-color: rgba(245,158,11,.3); box-shadow: 0 0 20px var(--sec-primary-glow); }

/* =====================================================
   BONUS SECTION
   ===================================================== */
.sec-bonus-grid {
  display: flex; flex-wrap: wrap; gap: var(--sec-gap); justify-content: stretch;
}
.sec-bonus-card {
  flex: 1 1 calc(50% - 12px); background: var(--sec-surface);
  border: 1px solid var(--sec-border); border-radius: var(--sec-radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.sec-bonus-card:hover { border-color: rgba(245,158,11,.4); box-shadow: 0 4px 32px var(--sec-primary-glow); }
.sec-bonus-card--featured { border-color: rgba(245,158,11,.5); box-shadow: 0 0 24px var(--sec-primary-glow); }
.sec-bonus-card__image { position: relative;  overflow: hidden; }
.sec-bonus-card__image img { width: 100%; height: 100%; object-fit: cover; }
.sec-bonus-card__content { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.sec-bonus-card__stage {
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sec-primary); margin-bottom: 6px;
}
.sec-bonus-card__title { font-size: 1.1rem; font-weight: 800; line-height: 1.25; margin-bottom: 10px; }
.sec-bonus-card__desc { font-size: 0.9rem; color: var(--sec-text-muted); margin-bottom: 16px; flex: 1; }

/* Bonus stats list */
.sec-bonus-stats { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--sec-border); border-radius: var(--sec-radius); overflow: hidden; }
.sec-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--sec-border); }
.sec-bonus-stats li:last-child { border-bottom: none; }
.sec-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.sec-bonus-stats li span:first-child { color: var(--sec-text-muted); font-weight: 500; }
.sec-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.sec-bonus-card__terms { font-size: 11px; color: var(--sec-text-muted); margin-bottom: 16px; line-height: 1.5; }

/* =====================================================
   BONUS SUMMARY TABLE
   ===================================================== */
.sec-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: var(--sec-radius); border: 1px solid var(--sec-border); }
.sec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.sec-table th { background: var(--sec-surface-3); color: var(--sec-text); font-weight: 700; text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--sec-border); white-space: nowrap; }
.sec-table td { padding: 12px 16px; border-bottom: 1px solid var(--sec-border); color: var(--sec-text-muted); }
.sec-table tr:last-child td { border-bottom: none; }
.sec-table tr:nth-child(even) td { background: rgba(255,255,255,.015); }
.sec-table td strong, .sec-table td b { color: var(--sec-text); }
.sec-table .total-row td { background: var(--sec-primary-glow); color: var(--sec-primary); font-weight: 700; }

/* =====================================================
   INFO BOXES / CALLOUTS
   ===================================================== */
.sec-callout {
  background: var(--sec-surface-2); border-left: 4px solid var(--sec-primary);
  border-radius: 0 var(--sec-radius) var(--sec-radius) 0;
  padding: 16px 20px; margin: 24px 0;
  font-size: 0.9rem; color: var(--sec-text-muted);
}
.sec-callout strong { color: var(--sec-primary); }
.sec-callout--warn { border-left-color: var(--sec-red); }
.sec-callout--warn strong { color: var(--sec-red); }

/* =====================================================
   STEPS (numbered)
   ===================================================== */
.sec-steps { display: flex; flex-direction: column; gap: 20px; }
.sec-step { display: flex; gap: 16px; }
.sec-step__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sec-primary-glow); border: 1.5px solid rgba(245,158,11,.4);
  color: var(--sec-primary); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.sec-step__body { padding-top: 8px; }
.sec-step__title { font-weight: 700; margin-bottom: 4px; }
.sec-step__desc { font-size: 0.9rem; color: var(--sec-text-muted); }

/* =====================================================
   FEATURES / HIGHLIGHTS
   ===================================================== */
.sec-features-grid { display: flex; flex-wrap: wrap; gap: var(--sec-gap); }
.sec-feature {
  flex: 1 1 calc(25% - 18px); min-width: 200px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s;
}
.sec-feature:hover { border-color: rgba(245,158,11,.35); }
.sec-feature__icon { width: 52px; height: 52px; object-fit: contain; color: var(--sec-primary); display: flex; align-items: center; justify-content: center; }
.sec-feature__img { margin: -28px -24px 4px; overflow: hidden; border-radius: var(--sec-radius-lg) var(--sec-radius-lg) 0 0;  }
.sec-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.sec-feature:hover .sec-feature__img img { transform: scale(1.04); }
.sec-feature__title { font-weight: 700; font-size: 1rem; }
.sec-feature__desc { font-size: 0.88rem; color: var(--sec-text-muted); flex: 1; }
.sec-feature .sec-btn { margin-top: auto; align-self: flex-start; }

/* =====================================================
   PAYMENT CARDS
   ===================================================== */
.sec-payment-grid { display: flex; flex-wrap: wrap; gap: var(--sec-gap); }
.sec-payment-card {
  flex: 1 1 calc(50% - 12px); min-width: 240px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 24px;
}
.sec-payment-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--sec-primary); }
.sec-payment-card p { font-size: 0.88rem; color: var(--sec-text-muted); }
.sec-payment-card ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.sec-payment-card ul li { font-size: 0.87rem; color: var(--sec-text-muted); padding-left: 14px; position: relative; }
.sec-payment-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--sec-primary); font-size: 0.8rem; }

/* =====================================================
   GAME CATALOG GRID
   ===================================================== */
.sec-games-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sec-filter-btn {
  padding: 7px 16px; border-radius: 20px; font-size: 0.83rem; font-weight: 600;
  border: 1.5px solid var(--sec-border); color: var(--sec-text-muted);
  background: transparent; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.sec-filter-btn img { width: 16px; height: 16px; object-fit: contain; opacity: .7; }
.sec-filter-btn:hover, .sec-filter-btn.active { border-color: var(--sec-primary); color: var(--sec-primary); background: var(--sec-primary-glow); }
.sec-filter-btn.active img, .sec-filter-btn:hover img { opacity: 1; }

.sec-games-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.sec-game-card {
  flex: 0 0 calc(16.666% - 12px); min-width: 140px;
  background: var(--sec-surface-2); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); overflow: hidden;
  transition: transform .2s, border-color .2s;
  position: relative;
  text-decoration: none; color: inherit; display: block;
}
.sec-game-card:hover { transform: translateY(-2px); border-color: rgba(245,158,11,.4); }
.sec-game-card__img-wrap { aspect-ratio: 1/1; overflow: hidden; }
.sec-game-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sec-game-card__name {
  padding: 8px 10px; font-size: 0.78rem; font-weight: 600;
  color: var(--sec-text-muted); text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.sec-game-card__badge {
  position: absolute; top: 6px; left: 6px; background: var(--sec-primary);
  color: #0C1018; font-size: 0.65rem; font-weight: 800; padding: 2px 7px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .04em;
}
.sec-games-grid--3col .sec-game-card { flex: 0 0 calc(33.333% - 10px); min-width: 0; }

/* =====================================================
   PROVIDERS STRIP
   ===================================================== */
.sec-providers { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.sec-provider {
  flex: 1 1 120px; background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color .2s;
}
.sec-provider:hover { border-color: rgba(245,158,11,.4); }
.sec-provider img { max-width: 100px; height: 36px; object-fit: contain; opacity: .75; transition: opacity .2s; }
.sec-provider:hover img { opacity: 1; }
.sec-provider__name { font-size: 0.75rem; color: var(--sec-text-muted); font-weight: 600; text-align: center; }

/* =====================================================
   PROVIDER LIST (icon left + text right)
   ===================================================== */
.sec-provider-list { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; }
.sec-provider-item {
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-sm); padding: 14px 20px;
  display: flex; gap: 20px; align-items: center;
  transition: border-color .2s;
}
.sec-provider-item:hover { border-color: rgba(245,158,11,.4); }
.sec-provider-item__logo {
  flex: 0 0 108px; display: flex; align-items: center; justify-content: center;
}
.sec-provider-item__logo img { max-width: 108px; height: 36px; object-fit: contain; opacity: .8; transition: opacity .2s; }
.sec-provider-item:hover .sec-provider-item__logo img { opacity: 1; }
.sec-provider-item__body { flex: 1; }
.sec-provider-item__name { font-size: 0.875rem; font-weight: 700; color: var(--sec-text); display: block; margin-bottom: 4px; }
.sec-provider-item__desc { font-size: 0.825rem; color: var(--sec-text-muted); line-height: 1.55; margin: 0; }

/* =====================================================
   MECHANICS
   ===================================================== */
.sec-mechanics-grid { display: flex; flex-direction: column; gap: 2px; }
.sec-mechanic {
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-sm); padding: 16px 20px;
  display: flex; gap: 16px; align-items: flex-start;
}
.sec-mechanic__tag {
  flex-shrink: 0; background: var(--sec-primary-glow); border: 1px solid rgba(245,158,11,.3);
  color: var(--sec-primary); font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap; margin-top: 2px;
  letter-spacing: .04em;
}
.sec-mechanic__text { font-size: 0.9rem; color: var(--sec-text-muted); }
.sec-mechanic__text strong { color: var(--sec-text); }
.sec-mechanic__icon { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.85; margin-top: 1px; }

/* =====================================================
   VIP / TIERS
   ===================================================== */
.sec-tiers { display: flex; flex-wrap: wrap; gap: var(--sec-gap); }
.sec-tier {
  flex: 1 1 calc(33.333% - 16px); min-width: 200px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 24px;
}
.sec-tier--top { border-color: rgba(245,158,11,.45); background: linear-gradient(135deg, var(--sec-surface), rgba(245,158,11,.06)); }
.sec-tier__badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; color: var(--sec-text-muted); }
.sec-tier--top .sec-tier__badge { color: var(--sec-primary); }
.sec-tier__name { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.sec-tier ul { display: flex; flex-direction: column; gap: 8px; }
.sec-tier ul li { font-size: 0.87rem; color: var(--sec-text-muted); padding-left: 18px; position: relative; }
.sec-tier ul li::before { content: '✓'; position: absolute; left: 0; color: var(--sec-accent); font-weight: 700; }

/* =====================================================
   SECURITY / RG
   ===================================================== */
.sec-security-grid { display: flex; flex-wrap: wrap; gap: var(--sec-gap); }
.sec-security-item {
  flex: 1 1 calc(50% - 12px); min-width: 240px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 22px;
  display: flex; gap: 16px;
}
.sec-security-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--sec-primary-glow); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--sec-primary);
}
.sec-security-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.sec-security-item p { font-size: 0.85rem; color: var(--sec-text-muted); }

/* =====================================================
   REVIEWS SLIDER
   ===================================================== */
.sec-reviews-slider { position: relative; overflow: hidden; }
.sec-reviews-track { display: flex; gap: 20px; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.sec-review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.sec-review-card__header { display: flex; justify-content: space-between; align-items: flex-start; }
.sec-review-card__name { font-weight: 700; font-size: 0.95rem; }
.sec-review-card__loc { font-size: 0.8rem; color: var(--sec-text-muted); margin-top: 2px; }
.sec-review-card__stars { color: var(--sec-primary); font-size: 0.9rem; letter-spacing: 2px; }
.sec-review-card__meta { font-size: 0.8rem; color: var(--sec-text-dim); }
.sec-review-card blockquote { font-size: 0.88rem; color: var(--sec-text-muted); line-height: 1.65; font-style: italic; }

.sec-slider-controls { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 28px; }
.sec-slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--sec-border); background: var(--sec-surface-2);
  color: var(--sec-text); font-size: 1rem; transition: all .2s;
}
.sec-slider-btn:hover { border-color: var(--sec-primary); color: var(--sec-primary); }
.sec-slider-dots { display: flex; gap: 8px; align-items: center; }
.sec-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sec-border); border: none; cursor: pointer; transition: all .2s;
}
.sec-slider-dot.active { background: var(--sec-primary); width: 24px; border-radius: 4px; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.sec-faq { display: flex; flex-direction: column; gap: 8px; }
.sec-faq-item {
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); overflow: hidden;
}
.sec-faq-item.open { border-color: rgba(245,158,11,.3); }
.sec-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  user-select: none; gap: 12px;
}
.sec-faq-q:hover { color: var(--sec-primary); }
.sec-faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--sec-border); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: var(--sec-text-muted);
  transition: all .3s; line-height: 1;
}
.sec-faq-item.open .sec-faq-icon { background: var(--sec-primary); border-color: var(--sec-primary); color: #0C1018; transform: rotate(45deg); }
.sec-faq-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.sec-faq-body-inner { padding: 0 20px 18px; font-size: 0.9rem; color: var(--sec-text-muted); line-height: 1.7; }

/* =====================================================
   CONTENT TEXT STYLES
   ===================================================== */
.sec-content h2 { margin: 40px 0 14px; }
.sec-content h3 { margin: 28px 0 10px; }
.sec-content p { margin-bottom: 16px; font-size: 0.95rem; color: var(--sec-text-muted); }
.sec-content p strong { color: var(--sec-text); }
.sec-content ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 7px; }
.sec-content ul li { font-size: 0.9rem; color: var(--sec-text-muted); list-style: disc; }
.sec-content ul li strong { color: var(--sec-text); }
.sec-content hr { border: none; border-top: 1px solid var(--sec-border); margin: 36px 0; }

/* Inline list variant */
.sec-check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.sec-check-list li { padding-left: 22px; position: relative; font-size: 0.9rem; color: var(--sec-text-muted); }
.sec-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sec-accent); font-weight: 700; }

/* =====================================================
   SUPPORT TABLE (responsible gaming)
   ===================================================== */
.sec-support-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 24px 0; }
.sec-support-table th { text-align: left; padding: 10px 14px; background: var(--sec-surface-3); font-weight: 700; border-bottom: 1px solid var(--sec-border); }
.sec-support-table td { padding: 10px 14px; border-bottom: 1px solid var(--sec-border); color: var(--sec-text-muted); }
.sec-support-table tr:last-child td { border-bottom: none; }
.sec-support-table a { color: var(--sec-primary); }

/* =====================================================
   FOOTER
   ===================================================== */
.sec-footer { background: var(--sec-surface); border-top: 1px solid var(--sec-border); padding: 56px 0 28px; }
.sec-footer__top { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; align-items: flex-start; }
.sec-footer__brand { flex: 1 1 220px; max-width: 280px; }
.sec-footer__logo { height: 32px; margin-bottom: 14px; }
.sec-footer__tagline { font-size: 0.85rem; color: var(--sec-text-muted); margin-bottom: 18px; }
.sec-footer__socials { display: flex; gap: 10px; }
.sec-footer__social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--sec-border); display: flex; align-items: center; justify-content: center; transition: border-color .2s; }
.sec-footer__social:hover { border-color: var(--sec-primary); }
.sec-footer__social img { width: 18px; height: 18px; }

.sec-footer__col { flex: 1 1 140px; }
.sec-footer__col-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sec-text-muted); margin-bottom: 14px; }
.sec-footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.sec-footer__col a { font-size: 0.87rem; color: var(--sec-text-muted); transition: color .2s; }
.sec-footer__col a:hover { color: var(--sec-text); text-decoration: none; }

.sec-footer__payments { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.sec-footer__pay-icon { height: 28px; width: auto; opacity: .5; transition: opacity .2s; }
.sec-footer__pay-icon:hover { opacity: 1; }

.sec-footer__testimonials {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--sec-border); border-bottom: 1px solid var(--sec-border);
  margin-bottom: 28px;
}
.sec-footer__testimonials a { display: flex; align-items: center; opacity: .45; transition: opacity .2s; }
.sec-footer__testimonials a:hover { opacity: 1; }
.sec-footer__testimonials img { height: 26px; width: auto; }

.sec-footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.sec-footer__legal { font-size: 0.78rem; color: var(--sec-text-dim); max-width: 680px; line-height: 1.6; }
.sec-footer__bottom-links { display: flex; gap: 18px; }
.sec-footer__bottom-links a { font-size: 0.82rem; color: var(--sec-text-dim); transition: color .2s; }
.sec-footer__bottom-links a:hover { color: var(--sec-text); text-decoration: none; }
.sec-age-badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sec-red); color: #fff; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; letter-spacing: .02em;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.sec-page-hero {
  position: relative; overflow: hidden;
  background: var(--sec-bg);
  border-bottom: 1px solid var(--sec-border);
  min-height: 520px; display: flex; align-items: center;
}
.sec-page-hero__bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.sec-page-hero__bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(12,16,24,.88) 0%, rgba(12,16,24,.55) 60%, rgba(12,16,24,.2) 100%);
}
.sec-page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.sec-page-hero .sec-wrap { position: relative; z-index: 1; padding: 80px 20px; margin: 0 auto; }
.sec-page-hero .sec-label { margin-bottom: 12px; }
.sec-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--sec-text-muted); margin-top: 20px; }
.sec-breadcrumb a { color: var(--sec-text-muted); transition: color .2s; }
.sec-breadcrumb a:hover { color: var(--sec-primary); text-decoration: none; }
.sec-breadcrumb span { color: var(--sec-text-dim); }

/* =====================================================
   CONTACT
   ===================================================== */
.sec-contact-grid { display: flex; flex-wrap: wrap; gap: var(--sec-gap); }
.sec-contact-card {
  flex: 1 1 calc(50% - 12px); min-width: 240px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius-lg); padding: 32px;
}
.sec-contact-card__icon { font-size: 2rem; margin-bottom: 14px; }
.sec-contact-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.sec-contact-card p { font-size: 0.9rem; color: var(--sec-text-muted); margin-bottom: 14px; }
.sec-contact-card ul { display: flex; flex-direction: column; gap: 6px; }
.sec-contact-card ul li { font-size: 0.87rem; color: var(--sec-text-muted); }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.sec-legal-content { max-width: 760px; }
.sec-legal-content h2 { font-size: 1.2rem; font-weight: 800; margin: 36px 0 12px; color: var(--sec-text); }
.sec-legal-content p { font-size: 0.92rem; color: var(--sec-text-muted); margin-bottom: 14px; line-height: 1.7; }
.sec-legal-content ul { margin: 10px 0 14px 20px; }
.sec-legal-content ul li { font-size: 0.9rem; color: var(--sec-text-muted); list-style: disc; margin-bottom: 6px; }
.sec-legal-content hr { border: none; border-top: 1px solid var(--sec-border); margin: 28px 0; }
.sec-legal-content a:not(.sec-btn) { color: var(--sec-primary); }

/* =====================================================
   MISC UTILITIES
   ===================================================== */
.sec-text-primary { color: var(--sec-primary); }
.sec-text-muted { color: var(--sec-text-muted); }
.sec-text-accent { color: var(--sec-accent); }
.sec-divider { border: none; border-top: 1px solid var(--sec-border); margin: 48px 0; }
.sec-mt-sm { margin-top: 16px; }
.sec-mt { margin-top: 32px; }
.sec-mt-lg { margin-top: 48px; }
.sec-mb { margin-bottom: 24px; }
.sec-center { text-align: center; }
.sec-center .sec-intro { margin-left: auto; margin-right: auto; }
.sec-two-col { display: flex; flex-wrap: wrap; gap: 40px; }
.sec-two-col > * { flex: 1 1 calc(50% - 20px); min-width: 280px; }

/* Rating stars inline */
.sec-rating { display: inline-flex; align-items: center; gap: 8px; }
.sec-stars { color: var(--sec-primary); letter-spacing: 2px; }
.sec-rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  background: var(--sec-surface); border: 1px solid var(--sec-border);
  border-radius: var(--sec-radius); padding: 24px; margin-bottom: 36px;
}
.sec-rating-big { font-size: 2.8rem; font-weight: 800; color: var(--sec-primary); line-height: 1; }
.sec-rating-sub { font-size: 0.82rem; color: var(--sec-text-muted); margin-top: 4px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .sec-bonus-card { flex-basis: calc(50% - 12px); }
  .sec-game-card { flex-basis: calc(25% - 11px); }
  .sec-feature { flex-basis: calc(50% - 12px); }
}

@media (max-width: 980px) {
  .sec-burger { display: flex; }
  .sec-nav { display: none; }
  .sec-mobile-overlay { display: block; }
  .sec-head__actions .sec-btn--ghost { display: none; }
  .sec-head__actions { display: flex; }
  .sec-head__actions .sec-btn { padding: 8px 16px; font-size: 0.82rem; }
  .sec-review-card { flex-basis: calc(50% - 10px); }
  .sec-tiers > * { flex-basis: 100%; }
  .sec-security-item { flex-basis: 100%; }
}

@media (max-width: 768px) {
  .sec-page-hero { min-height: 420px; }
  .sec-page-hero .sec-wrap { padding: 60px 20px; }
  .sec-page-hero__bg::after {
    background: linear-gradient(180deg, rgba(12,16,24,.5) 0%, rgba(12,16,24,.92) 100%);
  }
  .sec-section { padding: 52px 0; }
  .sec-hero { min-height: 420px; }
  .sec-hero__content { padding: 60px 20px; }
  .sec-hero__picture::after { background: linear-gradient(180deg, rgba(12,16,24,.6) 0%, rgba(12,16,24,.82) 100%); }
  .sec-bonus-card { flex-basis: 100%; }
  .sec-payment-card { flex-basis: 100%; }
  .sec-game-card { flex-basis: calc(33.333% - 10px); }
  .sec-games-grid--3col .sec-game-card { flex-basis: calc(33.333% - 10px); }
  .sec-fact { flex-basis: 100%; }
  .sec-two-col > * { flex-basis: 100%; }
  .sec-feature { flex-basis: 100%; }
  .sec-review-card { flex-basis: 100%; }
  .sec-contact-card { flex-basis: 100%; }
  .sec-footer__top { gap: 28px; }
  .sec-footer__col { flex-basis: calc(50% - 14px); }
}

@media (max-width: 480px) {
  .sec-game-card { flex-basis: calc(50% - 7px); }
  .sec-provider { flex-basis: calc(50% - 6px); }
  .sec-footer__col { flex-basis: 100%; }
  .sec-hero__actions { flex-direction: column; align-items: flex-start; }
  .sec-hero__actions .sec-btn { width: 100%; justify-content: center; }
  .sec-provider-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sec-provider-item__logo { flex: 0 0 auto; }
  .sec-games-grid--3col .sec-game-card { flex-basis: 100%; }
}
