/* ============================================================
   CAZEUS CASINO — Main Stylesheet
   Brand: Dark Navy / Gold | Font: Oswald + Open Sans
   ============================================================ */

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

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

/* --- Reset & Base --- */
*, *::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;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  color: var(--brand-text);
}

p {
  margin-bottom: 1rem;
  font-size: var(--brand-body-size);
  line-height: 1.75;
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
}

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

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid var(--brand-divider);
  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;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

/* Nav */
.main-nav {
  flex: 1;
}

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

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color var(--transition-base), background var(--transition-base);
}

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

/* Header CTA Group */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.mobile-menu-btn:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 16px rgba(200,162,78,0.35);
}

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

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

.btn-outline:hover {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  transform: translateY(-2px);
}

.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 30px rgba(200,162,78,0.5);
}

.btn-hero:hover {
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(200,162,78,0.6);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  color: var(--brand-btn-text);
  padding: 14px 36px;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 20px rgba(200,162,78,0.4);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 44px;
  font-size: 16px;
}

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200,162,78,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

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

/* Pulse animation on floating button */
.floating-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--brand-secondary);
  opacity: 0;
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.95); opacity: 0.6; }
  70%  { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: var(--brand-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,162,78,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,26,46,0.8) 0%, transparent 50%),
    linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
  z-index: 0;
}

/* Decorative orb */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,78,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,162,78,0.12);
  border: 1px solid rgba(200,162,78,0.3);
  color: var(--brand-secondary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-secondary);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-family: var(--brand-head-font);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brand-text);
}

.hero-title .highlight {
  color: var(--brand-secondary);
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--brand-head-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual Panel */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.hero-game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,78,0.4);
}

.hero-game-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.game-card-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.game-card-label {
  font-size: 10px;
  font-family: var(--brand-head-font);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card-1 { background: linear-gradient(135deg, #1a1a3e, #2a1a3e); }
.hero-card-2 { background: linear-gradient(135deg, #1a2e1a, #1a3e2a); }
.hero-card-3 { background: linear-gradient(135deg, #2e1a1a, #3e1a1a); }
.hero-card-4 { background: linear-gradient(135deg, #1a2a3e, #1a1a2e); }
.hero-card-5 { background: linear-gradient(135deg, #2e2a1a, #3e2a1a); }
.hero-card-6 { background: linear-gradient(135deg, #1a3e3a, #1a2e2e); }

.hero-promo-strip {
  background: linear-gradient(90deg, rgba(200,162,78,0.15), rgba(200,162,78,0.05));
  border: 1px solid rgba(200,162,78,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-promo-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hero-promo-text strong {
  display: block;
  font-family: var(--brand-head-font);
  color: var(--brand-secondary);
  font-size: 15px;
}

.hero-promo-text span {
  font-size: 12px;
  color: var(--brand-muted);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 100px 0;
}

.section-alt {
  background: var(--brand-primary);
}

.section-dark {
  background: #0a0a16;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--brand-head-font);
  font-weight: 700;
  margin-bottom: 14px;
}

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

.section-desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 580px;
  line-height: 1.7;
}

.section-desc.centered {
  margin: 0 auto;
  text-align: center;
}

.divider-gold {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  border-radius: 2px;
  margin: 16px 0;
}

.divider-gold.centered {
  margin: 16px auto;
}

/* ============================================================
   WELCOME / INTRO SECTION (Full-width, single column)
   ============================================================ */

.welcome-section {
  background: linear-gradient(180deg, var(--brand-bg) 0%, var(--brand-primary) 100%);
  padding: 80px 0;
  text-align: center;
}

.welcome-inner {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.welcome-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================
   FEATURE CARDS — 3-column grid
   ============================================================ */

.features-section {
  background: var(--brand-bg);
  padding: 80px 0;
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,78,0.35);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200,162,78,0.1);
  border: 1px solid rgba(200,162,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.feature-title {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-text);
}

.feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   BONUS SECTION — 2-column asymmetric (2/3 + 1/3)
   ============================================================ */

.bonus-section {
  background: var(--brand-primary);
  padding: 80px 0;
}

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

.bonus-main {}

.bonus-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.bonus-body {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.bonus-terms {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.bonus-sidebar {}

.bonus-card {
  background: linear-gradient(135deg, rgba(200,162,78,0.12), rgba(200,162,78,0.04));
  border: 1px solid rgba(200,162,78,0.3);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: sticky;
  top: 84px;
}

.bonus-card-amount {
  font-family: var(--brand-head-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-card-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.bonus-card-cta {
  width: 100%;
  text-align: center;
}

.bonus-checklist {
  margin: 20px 0;
  text-align: left;
}

.bonus-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bonus-check-item:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--brand-secondary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   GAME CATEGORIES — Full-width tabs + 4-column grid
   ============================================================ */

.games-section {
  background: var(--brand-bg);
  padding: 80px 0;
}

.games-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-btn-text);
}

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

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,78,0.4);
}

.game-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
}

.game-card-info {
  padding: 10px 12px;
}

.game-name {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 2px;
}

.game-provider {
  font-size: 10px;
  color: var(--brand-muted);
}

.game-thumb-1  { background: linear-gradient(135deg, #2c1654, #4a1f7a); }
.game-thumb-2  { background: linear-gradient(135deg, #1a3a1a, #2a5a2a); }
.game-thumb-3  { background: linear-gradient(135deg, #3a1a1a, #5a2a2a); }
.game-thumb-4  { background: linear-gradient(135deg, #1a2a4a, #2a3a6a); }
.game-thumb-5  { background: linear-gradient(135deg, #3a2a1a, #5a4a2a); }
.game-thumb-6  { background: linear-gradient(135deg, #1a3a3a, #2a5a5a); }
.game-thumb-7  { background: linear-gradient(135deg, #2a1a3a, #3a2a5a); }
.game-thumb-8  { background: linear-gradient(135deg, #1a2a1a, #2a4a2a); }

.games-cta-row {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   PAYMENTS SECTION — Side by side 50/50
   ============================================================ */

.payments-section {
  background: var(--brand-primary);
  padding: 80px 0;
}

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

.payments-text .section-desc {
  font-size: 14px;
}

.payments-table {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  overflow: hidden;
}

.payments-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

.payments-row:last-child {
  border-bottom: none;
}

.payments-row-header {
  background: rgba(200,162,78,0.08);
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.pay-method {
  font-weight: 600;
  color: var(--brand-text);
}

.pay-speed {
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.pay-status {
  color: #4ade80;
  font-size: 11px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: right;
}

/* ============================================================
   SECURITY / LICENSING SECTION — Full width + 3 stat blocks
   ============================================================ */

.security-section {
  background: #0a0a16;
  padding: 80px 0;
}

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

.security-text {}

.security-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.security-stat-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}

.sec-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.sec-title {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.sec-desc {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.license-bar {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.license-label {
  font-size: 12px;
  color: var(--brand-muted);
  font-family: var(--brand-head-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.license-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-tag {
  background: rgba(200,162,78,0.1);
  border: 1px solid rgba(200,162,78,0.25);
  color: var(--brand-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ============================================================
   SUPPORT SECTION — Asymmetric 1/3 + 2/3
   ============================================================ */

.support-section {
  background: var(--brand-bg);
  padding: 80px 0;
}

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

.support-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.support-card:hover {
  border-color: rgba(200,162,78,0.35);
  transform: translateY(-3px);
}

.support-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.support-method {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.support-detail {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIBLE GAMBLING SECTION
   ============================================================ */

.responsible-section {
  background: var(--brand-primary);
  padding: 60px 0;
  border-top: 1px solid var(--brand-divider);
  border-bottom: 1px solid var(--brand-divider);
}

.responsible-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.responsible-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.responsible-title {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.responsible-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   MID-PAGE CTA SECTION
   ============================================================ */

.mid-cta-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0d0d2a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,78,0.06) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.mid-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.mid-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #080812;
  padding: 60px 0 0;
  border-top: 1px solid var(--brand-divider);
}

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

.footer-brand {}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: rgba(200,162,78,0.15);
  border-color: rgba(200,162,78,0.3);
  color: var(--brand-secondary);
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base);
}

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

/* Security logos row */
.footer-security {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}

.security-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.security-logo-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-logo-badge .badge-icon {
  font-size: 14px;
}

/* Age restriction */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e74c3c;
  color: #fff;
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Responsible gambling links */
.footer-gambling-help {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 24px;
}

.gambling-help-title {
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

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

.gambling-help-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-base);
}

.gambling-help-links a:hover {
  color: var(--brand-secondary);
}

.gambling-help-phone {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.gambling-help-phone strong {
  color: rgba(255,255,255,0.55);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-base);
}

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

/* ============================================================
   LEGAL PAGE STYLES
   ============================================================ */

.legal-page {
  padding: 100px 0 80px;
  min-height: 70vh;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand-divider);
}

.legal-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

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

.legal-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--brand-secondary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 22px 0 10px;
  color: var(--brand-text);
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gold { color: var(--brand-secondary); }
.text-muted { color: var(--brand-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 1rem; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .bonus-sidebar {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payments-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .responsible-inner {
    grid-template-columns: auto 1fr;
  }

  .responsible-inner .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@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 10px rgba(0,0,0,0.5);
    z-index: 999;
    border-top: 1px solid var(--brand-divider);
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .header-cta .btn-outline {
    display: none;
  }
}

@media (max-width: 768px) {
  .section,
  .section-sm,
  .section-lg {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-stats {
    grid-template-columns: 1fr;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .responsible-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gambling-help-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .security-logos {
    gap: 10px;
  }

  .security-logo-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
}