/* ============================================================
   VIP Luck Casino — assets/style.css
   Brand: Elegant luxury, warm beige/cream, gold accents
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #C4A265;
  --brand-secondary:   #2C3E50;
  --brand-accent:      #4A5A8A;
  --brand-bg:          #F5F0E8;
  --brand-text:        #3D3D3D;
  --brand-header-bg:   #FAF6EF;
  --brand-btn-bg:      #4A5A8A;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Playfair Display', serif;
  --brand-body-font:   'Lato', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-gold-light:  #E8D5A3;
  --brand-gold-dark:   #9E7D3F;
  --brand-cream:       #FDF9F3;
  --brand-border:      #DDD0B8;
  --brand-shadow:      rgba(196, 162, 101, 0.2);
  --transition-base:   0.25s ease;
  --radius-card:       12px;
  --radius-btn:        8px;
}

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

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

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

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

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

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

ul {
  list-style: none;
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  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 30px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background-color: var(--brand-header-bg);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.site-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nav */
.main-nav {
  position: relative;
}

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

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

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-primary);
  color: #fff;
}

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

/* Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-btn);
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  color: var(--brand-secondary);
  transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

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

.btn {
  display: inline-block;
  padding: 11px 24px;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-color: var(--brand-btn-bg);
  box-shadow: 0 4px 14px rgba(74, 90, 138, 0.35);
}

.btn-primary:hover {
  background: #3a4a7a;
  border-color: #3a4a7a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 90, 138, 0.45);
}

.btn-gold {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 14px rgba(196, 162, 101, 0.4);
}

.btn-gold:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 162, 101, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--brand-body-font);
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #C4A265 0%, #E8D5A3 50%, #C4A265 100%);
  color: #2C3E50;
  border: 2px solid #C4A265;
  box-shadow: 0 6px 24px rgba(196,162,101,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,162,101,0.65);
  color: #1a252f;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--brand-primary);
  box-shadow: 0 4px 16px rgba(196,162,101,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,162,101,0.55);
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #fff;
}

/* Floating CTA — always visible */
.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-body-font);
  border: 2px solid rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: #fff;
}

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

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2C3E50 40%, #3a4a6a 70%, #4A5A8A 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(196,162,101,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74,90,138,0.25) 0%, transparent 55%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(196,162,101,0.04) 0px,
      rgba(196,162,101,0.04) 1px,
      transparent 1px,
      transparent 30px
    );
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
  padding: 80px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(196,162,101,0.25);
  border: 1px solid rgba(196,162,101,0.5);
  color: var(--brand-gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.hero-title span {
  color: var(--brand-primary);
  display: block;
}

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

.hero-bonus-box {
  background: rgba(196,162,101,0.15);
  border: 1px solid rgba(196,162,101,0.4);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  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.75);
  margin-top: 4px;
  display: block;
}

.hero-bonus-box .bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-promo-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(196,162,101,0.35);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  text-align: center;
  color: #fff;
}

.promo-card-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.promo-card-title {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.promo-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.promo-feature {
  background: rgba(196,162,101,0.1);
  border: 1px solid rgba(196,162,101,0.25);
  border-radius: 8px;
  padding: 12px 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.promo-feature .feat-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   MAIN CONTENT SECTIONS
   ============================================================ */

main {
  background-color: var(--brand-bg);
}

/* Section Base */
.section-pad {
  padding: 72px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

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

.section-dark {
  background: var(--brand-secondary);
  color: #fff;
}

.section-dark .section-title,
.section-dark .section-subtitle {
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.82);
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--brand-secondary);
  line-height: 1.25;
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 580px;
  line-height: 1.7;
}

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

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold-light));
  border-radius: 2px;
  margin: 14px 0 20px;
}

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

/* ============================================================
   SECTION: WELCOME / INTRO — Full-width single column
   ============================================================ */

.welcome-section {
  background: var(--brand-cream);
  border-top: 3px solid var(--brand-primary);
  border-bottom: 1px solid var(--brand-border);
}

.welcome-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.welcome-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brand-text);
  margin-bottom: 16px;
}

.welcome-inner p:last-child {
  margin-bottom: 0;
}

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

.bonus-section {
  background: var(--brand-bg);
}

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

.bonus-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--brand-text);
}

.bonus-steps {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--brand-cream);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  transition: border-color var(--transition-base);
}

.bonus-step:hover {
  border-color: var(--brand-primary);
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text h4 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.bonus-sidebar-card {
  background: linear-gradient(145deg, var(--brand-secondary), #3a4a6a);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(196,162,101,0.3);
  position: sticky;
  top: 90px;
}

.bonus-sidebar-card .card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.bonus-sidebar-card h3 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.bonus-sidebar-card .big-number {
  font-family: var(--brand-head-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-gold-light);
  line-height: 1;
  margin: 12px 0;
}

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

/* ============================================================
   SECTION: GAMES — Three-column card grid
   ============================================================ */

.games-section {
  background: var(--brand-cream);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

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

.game-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--brand-shadow);
  border-color: var(--brand-primary);
}

.game-card-icon {
  font-size: 44px;
  margin-bottom: 14px;
  display: block;
}

.game-card h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.game-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.game-card .game-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION: PAYMENTS — Four-column grid
   ============================================================ */

.payments-section {
  background: var(--brand-secondary);
}

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

.payment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,162,101,0.25);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.payment-card:hover {
  background: rgba(196,162,101,0.12);
  border-color: rgba(196,162,101,0.5);
}

.payment-card .pay-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.payment-card h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.payment-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================================
   SECTION: TRUST / SECURITY — Two equal columns
   ============================================================ */

.trust-section {
  background: var(--brand-bg);
}

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

.trust-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge {
  background: var(--brand-cream);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition-base);
}

.trust-badge:hover {
  border-color: var(--brand-primary);
}

.trust-badge .badge-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.trust-badge h4 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}

.trust-badge p {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

.trust-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brand-text);
  margin-bottom: 16px;
}

/* ============================================================
   SECTION: LIVE CASINO — Full-width with accent bg
   ============================================================ */

.live-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2C3E50 100%);
  position: relative;
  overflow: hidden;
}

.live-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,0.15) 0%, transparent 70%);
}

.live-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.live-text .section-title {
  color: #fff;
}

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

.live-games-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.live-game-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,162,101,0.3);
  border-radius: var(--radius-card);
  padding: 20px 14px;
  text-align: center;
  color: #fff;
  transition: background var(--transition-base);
}

.live-game-item:hover {
  background: rgba(196,162,101,0.15);
}

.live-game-item .lg-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.live-game-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-gold-light);
}

/* ============================================================
   SECTION: SUPPORT — Three-column
   ============================================================ */

.support-section {
  background: var(--brand-cream);
  border-top: 1px solid var(--brand-border);
}

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

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

.support-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

.support-card .s-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.support-card h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.support-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}

/* ============================================================
   SECTION: FAQ — Single column full-width
   ============================================================ */

.faq-section {
  background: var(--brand-bg);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-card);
  background: var(--brand-cream);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--brand-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-secondary);
  user-select: none;
}

.faq-question .faq-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

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

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

/* ============================================================
   SECTION: RESPONSIBLE GAMING — Two-column
   ============================================================ */

.responsible-section {
  background: var(--brand-secondary);
  padding: 56px 0;
}

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

.responsible-text .section-title {
  color: #fff;
}

.responsible-text p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.responsible-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.responsible-links a {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid rgba(196,162,101,0.5);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-gold-light);
  letter-spacing: 0.5px;
  transition: background var(--transition-base), color var(--transition-base);
}

.responsible-links a:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.responsible-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.resp-icon-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: var(--radius-card);
  padding: 18px 14px;
  text-align: center;
}

.resp-icon-box .ri-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.resp-icon-box p {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.4;
}

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

.site-footer {
  background: #15202b;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

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

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

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

/* Gambling logos row */
.footer-logos-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  min-width: 56px;
  text-align: center;
  line-height: 1.3;
}

.logo-badge.age-badge {
  background: rgba(196,162,101,0.2);
  border-color: rgba(196,162,101,0.4);
  color: var(--brand-gold-light);
  font-size: 18px;
  font-weight: 900;
  padding: 8px 14px;
}

.logo-badge.visa-badge {
  background: #1a1f71;
  border-color: #1a1f71;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
}

.logo-badge.mc-badge {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  font-size: 12px;
}

.logo-badge.amex-badge {
  background: #2E77BC;
  border-color: #2E77BC;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-badge.btc-badge {
  background: rgba(247,147,26,0.2);
  border-color: rgba(247,147,26,0.4);
  color: #f7931a;
  font-size: 14px;
  font-weight: 900;
}

.logo-badge.crypto-badge {
  background: rgba(98,126,234,0.2);
  border-color: rgba(98,126,234,0.4);
  color: #627eea;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

/* Footer CTA row */
.footer-cta-row {
  padding: 32px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-cta-row p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  padding-top: 68px;
  min-height: 100vh;
}

.legal-hero {
  background: linear-gradient(135deg, var(--brand-secondary), #3a4a6a);
  padding: 48px 0;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
}

.legal-hero .legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--brand-text);
  margin-bottom: 14px;
}

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

.legal-content ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--brand-text);
  margin-bottom: 6px;
}

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

.text-gold { color: var(--brand-primary); }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    gap: 36px;
    padding: 60px 20px 48px;
  }

  .bonus-layout {
    gap: 32px;
  }

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

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

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

/* ============================================================
   RESPONSIVE — MOBILE (max 992px) — NAV
   ============================================================ */

@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.1);
    border-top: 1px solid var(--brand-border);
    z-index: 100;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 14px;
    display: block;
    border-radius: 8px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  .section-pad {
    padding: 48px 0;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px 40px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: clamp(26px, 7vw, 38px);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .bonus-sidebar-card {
    position: static;
  }

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

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

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .live-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .responsible-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .floating-cta {
    bottom: 18px;
    right: 14px;
    font-size: 14px;
    padding: 12px 22px;
  }

  .header-cta-group {
    display: none;
  }

  .logos-inner {
    gap: 12px;
  }

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

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

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

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 10px;
  }

  .hero-bonus-box .bonus-amount {
    font-size: 32px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

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

  .trust-visual {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-question {
    font-size: 14px;
  }
}

/* ============================================================
   FOCUS STATES — ACCESSIBILITY
   ============================================================ */

a:focus,
button:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--brand-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 3px;
}