/* ============================================================
   CAZEUS CASINO — Main Stylesheet
   Brand: Dark luxury casino — navy/gold palette
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --brand-primary:     #1a1a2e;
  --brand-secondary:   #c8a84e;
  --brand-accent:      #d4a843;
  --brand-bg:          #0d0d1a;
  --brand-text:        #ffffff;
  --brand-header-bg:   #111128;
  --brand-btn-bg:      #c8a84e;
  --brand-btn-text:    #1a1a2e;
  --brand-btn-radius:  30px;
  --brand-head-font:   'Cinzel', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #16162a;
  --brand-border:      rgba(200, 168, 78, 0.2);
  --brand-muted:       rgba(255,255,255,0.6);
  --transition:        0.25s ease;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  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: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(200, 168, 78, 0.15);
  color: var(--brand-secondary);
}

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

/* --- Mobile Burger --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition);
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: rgba(200, 168, 78, 0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #b8942e 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 15px rgba(200,168,78,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,168,78,0.5);
  color: var(--brand-btn-text);
}

.btn-outline {
  background: transparent;
  color: var(--brand-secondary);
  border: 1.5px solid var(--brand-secondary);
}

.btn-outline:hover {
  background: rgba(200,168,78,0.12);
  color: var(--brand-accent);
  transform: translateY(-2px);
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #b8942e 100%);
  color: var(--brand-btn-text);
  font-size: 17px;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(200,168,78,0.45);
  display: inline-block;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,168,78,0.6);
  color: var(--brand-btn-text);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #b8942e 100%);
  color: var(--brand-btn-text);
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(200,168,78,0.4);
  display: inline-block;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,78,0.55);
  color: var(--brand-btn-text);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #b8942e 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200,168,78,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,168,78,0.6);
  color: var(--brand-btn-text);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a18 0%, #1a1a2e 40%, #0f0f22 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,168,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,26,46,0.9) 0%, transparent 50%);
  z-index: 1;
}

.hero-ornament {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(200,168,78,0.06) 0%, transparent 70%);
  z-index: 1;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,78,0.12);
  box-shadow:
    0 0 60px rgba(200,168,78,0.05),
    inset 0 0 60px rgba(200,168,78,0.05);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,168,78,0.15);
  border: 1px solid rgba(200,168,78,0.35);
  color: var(--brand-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--brand-text);
  margin-bottom: 20px;
}

.hero-section h1 span {
  color: var(--brand-secondary);
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(200,168,78,0.15);
}

.hero-trust-item {
  text-align: center;
}

.hero-trust-item .value {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1.2;
}

.hero-trust-item .label {
  display: block;
  font-size: 11px;
  color: var(--brand-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(200,168,78,0.2);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  background: rgba(200,168,78,0.12);
  border: 1px solid rgba(200,168,78,0.3);
  color: var(--brand-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--brand-secondary);
}

.section-sub {
  font-size: 15px;
  color: var(--brand-muted);
  max-width: 520px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ============================================================
   BONUS SECTION — Two-column asymmetric (2/3 + 1/3)
   ============================================================ */
.bonus-section {
  background: var(--brand-primary);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,78,0.06) 0%, transparent 70%);
}

.bonus-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.bonus-main p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.75;
}

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.bonus-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.bonus-card:hover {
  border-color: rgba(200,168,78,0.45);
  transform: translateX(4px);
}

.bonus-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,168,78,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bonus-card-info h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}

.bonus-card-info p {
  font-size: 13px;
  color: var(--brand-muted);
  margin: 0;
}

.bonus-sidebar-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(200,168,78,0.3);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: sticky;
  top: 90px;
}

.bonus-sidebar-card .amount {
  font-family: var(--brand-head-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1;
  display: block;
  margin: 10px 0 4px;
}

.bonus-sidebar-card .amount-label {
  font-size: 12px;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}

.bonus-sidebar-card .bonus-note {
  font-size: 11px;
  color: var(--brand-muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================================================
   GAMES SECTION — Three-column card grid
   ============================================================ */
.games-section {
  background: var(--brand-bg);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(200,168,78,0.4);
}

.game-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb.slots    { background: linear-gradient(135deg, #1a1a3e, #2a1a4e); }
.game-card-thumb.live     { background: linear-gradient(135deg, #1a2e2e, #0d2222); }
.game-card-thumb.table    { background: linear-gradient(135deg, #2e1a1a, #3e1010); }
.game-card-thumb.sports   { background: linear-gradient(135deg, #1a2e1a, #0d2a0d); }
.game-card-thumb.jackpot  { background: linear-gradient(135deg, #2e2a1a, #3e2e0a); }
.game-card-thumb.poker    { background: linear-gradient(135deg, #1a1a3e, #14143a); }

.game-card-body {
  padding: 20px;
}

.game-card-body h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-secondary);
  background: rgba(200,168,78,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PAYMENTS SECTION — Full-width single column
   ============================================================ */
.payments-section {
  background: var(--brand-primary);
}

.payments-intro {
  max-width: 760px;
  margin: 0 auto 56px;
}

.payments-intro p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
  line-height: 1.75;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.payment-item:hover {
  border-color: rgba(200,168,78,0.4);
  transform: translateY(-4px);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.payment-item h4 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.payment-item p {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.5;
}

.payment-item .speed {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #4caf50;
  background: rgba(76,175,80,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================================
   FEATURES SECTION — Four-column grid
   ============================================================ */
.features-section {
  background: var(--brand-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform var(--transition), border-color var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(200,168,78,0.4);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.65;
}

/* ============================================================
   SECURITY SECTION — Two-column (1/3 + 2/3)
   ============================================================ */
.security-section {
  background: linear-gradient(180deg, var(--brand-primary) 0%, #0f0f20 100%);
}

.security-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.security-badge-col {
  text-align: center;
}

.security-shield {
  font-size: 90px;
  display: block;
  margin: 0 auto 20px;
  line-height: 1;
}

.security-badge-col h3 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.security-badge-col p {
  font-size: 13px;
  color: var(--brand-muted);
}

.security-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.75;
}

.security-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.security-tag {
  background: rgba(200,168,78,0.1);
  border: 1px solid rgba(200,168,78,0.25);
  color: var(--brand-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================================
   MID-PAGE CTA SECTION
   ============================================================ */
.mid-cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 60px 0;
  text-align: center;
}

.mid-cta-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 14px;
}

.mid-cta-section p {
  font-size: 15px;
  color: var(--brand-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PROVIDERS SECTION — Full-width scrolling row
   ============================================================ */
.providers-section {
  background: var(--brand-bg);
  padding: 60px 0;
}

.providers-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.provider-chip {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-muted);
  transition: border-color var(--transition), color var(--transition);
}

.provider-chip:hover {
  border-color: rgba(200,168,78,0.5);
  color: var(--brand-secondary);
}

/* ============================================================
   FAQ SECTION — Single column
   ============================================================ */
.faq-section {
  background: var(--brand-primary);
}

.faq-layout {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--brand-secondary);
}

.faq-question .faq-icon {
  font-size: 18px;
  color: var(--brand-secondary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #070712;
  border-top: 1px solid var(--brand-border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--brand-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  color: var(--brand-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--brand-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--brand-secondary);
}

.footer-logos {
  padding: 32px 0;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-muted);
  letter-spacing: 0.05em;
}

.footer-responsible {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--brand-border);
}

.footer-resp-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-muted);
}

.footer-resp-badge .badge-icon {
  font-size: 20px;
}

.footer-resp-badge a {
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 12px;
}

.footer-age {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  font-weight: 900;
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--brand-muted);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--brand-secondary);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  padding: 20px 0 32px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-wrap {
  padding: 80px 0;
  min-height: 60vh;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--brand-muted);
  margin-bottom: 40px;
}

.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  color: var(--brand-secondary);
  margin: 36px 0 12px;
}

.legal-page-wrap p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page-wrap ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 1200px) {
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .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 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--brand-border);
    z-index: 999;
  }
  .mobile-nav-active ul li a {
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
  }
  .header-cta-group {
    display: none;
  }
  .bonus-layout {
    grid-template-columns: 1fr;
  }
  .bonus-sidebar-card {
    position: static;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .security-layout {
    grid-template-columns: 1fr;
  }
  .security-badge-col {
    order: -1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
  .hero-section {
    min-height: 70vh;
    padding: 80px 0 56px;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero-trust {
    gap: 14px;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .payments-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-trust {
    flex-wrap: wrap;
  }
  .providers-row {
    gap: 10px;
  }
  .footer-responsible {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Focus states for accessibility --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Main nav positioning fix --- */
.main-nav {
  position: relative;
}