:root {
  --brand-primary:     #E63946;
  --brand-secondary:   #3366FF;
  --brand-accent:      #00CC66;
  --brand-bg:          #0D0D0D;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #1A1A2E;
  --brand-btn-bg:      #E63946;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-family: var(--brand-body-font);
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid rgba(230,57,70,0.35);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a {
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #fff;
  background: rgba(255,255,255,0.08);
  outline: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus { outline: 3px solid var(--brand-accent); outline-offset: 3px; }

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 18px rgba(230,57,70,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.55);
  background: #c0303b;
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  padding: 16px 40px;
  font-size: 16px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 24px rgba(230,57,70,0.5);
  font-family: var(--brand-head-font);
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(230,57,70,0.65);
}

.btn-accent {
  background: var(--brand-accent);
  color: #0D0D0D;
  box-shadow: 0 4px 18px rgba(0,204,102,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,204,102,0.5);
  background: #00b359;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-primary), #c0303b);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,57,70,0.55);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  border: 2px solid rgba(255,255,255,0.15);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.floating-cta:focus { outline: 3px solid #fff; outline-offset: 3px; }

/* ─── HERO ─── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 40%, #0d0d1a 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(51,102,255,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Hero main banner (spans 2 cols) */
.hero-main {
  grid-column: span 2;
  border-radius: 16px;
  background: linear-gradient(120deg, #1a1a2e 0%, #0d0d1a 100%);
  border-left: 4px solid var(--brand-primary);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.hero-main::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(230,57,70,0.18);
  color: var(--brand-primary);
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-main h1 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}
.hero-main h1 span { color: var(--brand-primary); }

.hero-main p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-bonus-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 28px;
  display: inline-block;
}
.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
  line-height: 1.1;
}
.hero-bonus-box .bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}

.hero-side-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-side-card {
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 192px;
  position: relative;
  overflow: hidden;
}
.hero-side-card.card-blue {
  background: linear-gradient(135deg, #1a2540 0%, #0d1830 100%);
  border-left: 4px solid var(--brand-secondary);
}
.hero-side-card.card-green {
  background: linear-gradient(135deg, #0d2018 0%, #071410 100%);
  border-left: 4px solid var(--brand-accent);
}
.hero-side-card h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.hero-side-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.55;
}
.hero-side-card .btn-side {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--brand-btn-radius);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
  font-family: var(--brand-head-font);
}
.hero-side-card .btn-side:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 80px 0;
}
.section-sm { padding: 50px 0; }
.section-dark { background: #0D0D0D; }
.section-darker { background: #080808; }
.section-mid { background: #111118; }
.section-card { background: #0f0f1a; }

.section-header {
  margin-bottom: 48px;
}
.section-header.centered { text-align: center; }

.section-header h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--brand-primary); }
.section-header h2 .accent { color: var(--brand-accent); }

.section-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}
.section-header.centered p { margin: 0 auto; }

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
  margin: 14px 0 0;
}
.section-header.centered .divider-line { margin: 14px auto 0; }

/* ─── BONUS SECTION (2-col asymmetric) ─── */
.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.bonus-main-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 20px;
  padding: 44px 44px;
  position: relative;
  overflow: hidden;
}
.bonus-main-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-main-card h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}
.bonus-main-card .big-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-main-card .bonus-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.bonus-detail-list {
  margin-bottom: 32px;
}
.bonus-detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.bonus-detail-list li:last-child { border-bottom: none; }
.bonus-detail-list li .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,204,102,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--brand-accent);
}

.bonus-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-mini-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.bonus-mini-card:hover {
  border-color: rgba(230,57,70,0.35);
  transform: translateY(-2px);
}
.bonus-mini-card .mini-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.bonus-mini-card h4 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-mini-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: linear-gradient(90deg, #1a1a2e 0%, #0d0d1a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}
.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ─── GAMES SECTION (3-col) ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.game-card-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.game-card-banner.banner-red {
  background: linear-gradient(135deg, #2a0d10, #1a0d0d);
  border-bottom: 3px solid var(--brand-primary);
}
.game-card-banner.banner-blue {
  background: linear-gradient(135deg, #0d1530, #0a0d20);
  border-bottom: 3px solid var(--brand-secondary);
}
.game-card-banner.banner-green {
  background: linear-gradient(135deg, #061a0f, #040e08);
  border-bottom: 3px solid var(--brand-accent);
}

.game-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card-body h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.game-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.game-card-body .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-tag {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}
.card-tag.tag-red { background: rgba(230,57,70,0.12); color: var(--brand-primary); }
.card-tag.tag-blue { background: rgba(51,102,255,0.12); color: var(--brand-secondary); }
.card-tag.tag-green { background: rgba(0,204,102,0.12); color: var(--brand-accent); }

/* ─── PAYMENTS SECTION (4-col) ─── */
.payments-section { background: #080808; }

.payments-outer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.payments-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.payments-text h2 span { color: var(--brand-accent); }
.payments-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.7;
}
.payments-detail {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.payments-detail h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.payments-detail p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.payment-method-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.payment-method-card:hover {
  border-color: rgba(0,204,102,0.3);
  transform: translateY(-2px);
}
.payment-method-card .pm-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.payment-method-card h4 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.payment-method-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ─── WHY SECTION (full-width + 4 cards) ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--brand-primary);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:nth-child(2) { border-top-color: var(--brand-secondary); }
.why-card:nth-child(3) { border-top-color: var(--brand-accent); }
.why-card:nth-child(4) { border-top-color: #f5a623; }
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}
.why-card .why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ─── LIVE CASINO SECTION (asymmetric 1/3 + 2/3) ─── */
.live-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: center;
}
.live-info h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.live-info h2 span { color: var(--brand-secondary); }
.live-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.live-info ul {
  margin-bottom: 28px;
}
.live-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.live-info ul li:last-child { border-bottom: none; }
.live-info ul li .check {
  color: var(--brand-accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.live-table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.live-table-card {
  background: #111118;
  border: 1px solid rgba(51,102,255,0.2);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.live-table-card:hover {
  border-color: rgba(51,102,255,0.5);
  transform: translateY(-3px);
}
.live-table-card .lt-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.live-table-card h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.live-table-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─── SECURITY / LICENSING (single-col full width) ─── */
.security-section { background: #0a0a14; }
.security-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}
.security-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
}
.security-text h2 span { color: var(--brand-primary); }
.security-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,204,102,0.08);
  border: 1px solid rgba(0,204,102,0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 8px;
}
.license-badge .lb-icon { font-size: 22px; }
.license-badge h5 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 2px;
}
.license-badge p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.4; }

.security-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sec-icon-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.sec-icon-card .si-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.sec-icon-card h4 { font-family: var(--brand-head-font); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sec-icon-card p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ─── FAQ SECTION ─── */
.faq-section { background: #0D0D0D; }
.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(230,57,70,0.3); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: #111118;
  user-select: none;
}
.faq-question h4 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  padding-right: 16px;
}
.faq-toggle {
  color: var(--brand-primary);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: #111118;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border-top: 1px solid rgba(230,57,70,0.2);
  border-bottom: 1px solid rgba(230,57,70,0.2);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-strip h2 span { color: var(--brand-primary); }
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #050509;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo-img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 32px;
}

/* Gambling responsible row */
.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  white-space: nowrap;
}
.resp-badge .rb-icon { font-size: 16px; }
.resp-badge.age-badge {
  background: rgba(230,57,70,0.12);
  border-color: rgba(230,57,70,0.3);
  color: var(--brand-primary);
  font-size: 14px;
}

/* Payment icons row */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pm-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pm-badge .pm-symbol { font-size: 16px; }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 10px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.75); }

/* ─── LEGAL PAGES ─── */
.legal-page-wrap {
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 70vh;
}
.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(230,57,70,0.3);
}
.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 12px;
}
.legal-page-wrap p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-page-wrap ul {
  margin: 10px 0 20px 24px;
  list-style: disc;
}
.legal-page-wrap ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px; }
  .stat-item:last-child, .stat-item:nth-child(2) { border-bottom: none; }
}

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  #mainNav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    gap: 4px;
  }
  #mainNav.mobile-nav-active ul li a { padding: 12px 16px; display: block; border-radius: 8px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { grid-column: span 1; padding: 40px 28px; }
  .hero-side-cards { flex-direction: row; }
  .hero-side-card { flex: 1; }

  .bonus-grid { grid-template-columns: 1fr; }
  .payments-outer-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .security-inner { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .live-table-grid { grid-template-columns: repeat(2, 1fr); }
  .security-icons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-side-cards { flex-direction: column; }
  .hero-main { padding: 32px 22px; }
  .games-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .floating-cta { bottom: 18px; right: 18px; font-size: 14px; padding: 12px 22px; }
  .live-table-grid { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
  .bonus-main-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .payment-methods-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .security-icons-grid { grid-template-columns: 1fr; }
  .hero-main h1 { font-size: 1.7rem; }
  .cta-strip-buttons { flex-direction: column; align-items: center; }
  .footer-payments { gap: 8px; }
  .footer-responsible { gap: 10px; }
}