/* ============================================================
   VIP Luck Casino – Main Stylesheet
   Brand: Elegant luxury, warm cream & gold tones
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --brand-primary:     #C4A265;
  --brand-secondary:   #2C3E50;
  --brand-accent:      #4A5D8A;
  --brand-bg:          #F5F0E8;
  --brand-text:        #3D3D3D;
  --brand-header-bg:   #F8F4ED;
  --brand-btn-bg:      #4A5D8A;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  6px;
  --brand-head-font:   'Playfair Display', Georgia, serif;
  --brand-body-font:   'Georgia', serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --border-color:      #D9CEB8;
  --card-bg:           #FFFDF9;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 32px rgba(0,0,0,0.16);
  --transition:        0.25s ease;
}

/* ============================================================
   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;
  overflow-x: hidden;
}

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

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

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);
  color: var(--brand-secondary);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

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

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

.section {
  padding: 70px 0;
}

.section-alt {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--brand-primary);
}

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

.text-center { text-align: center; }
.text-gold   { color: var(--brand-primary); }

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-color: var(--brand-btn-bg);
}

.btn-primary:hover {
  background: #3a4d7a;
  color: #fff;
  border-color: #3a4d7a;
}

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

.btn-gold:hover {
  background: #b08f50;
  color: #fff;
  border-color: #b08f50;
}

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

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

.btn-hero {
  display: inline-block;
  padding: 18px 52px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: 2px solid var(--brand-primary);
  box-shadow: 0 6px 24px rgba(196,162,101,0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-transform: uppercase;
}

.btn-hero:hover {
  background: #b08f50;
  border-color: #b08f50;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,162,101,0.55);
}

.btn-cta {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #e0bb7a 100%);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(196,162,101,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,162,101,0.55);
  color: #fff;
}

/* ============================================================
   Floating CTA (Sticky Scroll Button)
   ============================================================ */
.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;
  font-family: var(--brand-head-font);
  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;
  border: 2px solid rgba(255,255,255,0.25);
}

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

/* ============================================================
   Skip Link (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-secondary);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

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

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

.logo-text {
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-secondary);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--brand-primary);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.main-nav ul li a {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-secondary);
  padding: 8px 14px;
  border-radius: var(--brand-btn-radius);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.3px;
}

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

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

.header-actions .btn {
  padding: 10px 22px;
  font-size: 13px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  border-radius: var(--brand-btn-radius);
  color: var(--brand-secondary);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}

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

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #2C3E50 0%, #1a2535 40%, #2C3E50 70%, #3d2e1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><radialGradient id="g1" cx="50%25" cy="50%25" r="60%25"><stop offset="0%25" stop-color="%23C4A265" stop-opacity="0.15"/><stop offset="100%25" stop-color="%232C3E50" stop-opacity="0"/></radialGradient></defs><rect width="800" height="600" fill="url(%23g1)"/></svg>') center/cover no-repeat;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--brand-bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(196,162,101,0.2);
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
  font-family: var(--brand-body-font);
  line-height: 1.7;
}

.hero-bonus {
  display: inline-block;
  background: linear-gradient(135deg, rgba(196,162,101,0.25) 0%, rgba(196,162,101,0.1) 100%);
  border: 1px solid rgba(196,162,101,0.5);
  border-radius: 10px;
  padding: 18px 36px;
  margin: 20px 0 32px;
  text-align: center;
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}

.hero-bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hero-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: var(--brand-body-font);
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--brand-secondary);
  padding: 16px 0;
  border-bottom: 2px solid var(--brand-primary);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: var(--brand-body-font);
}

.trust-item-icon {
  font-size: 18px;
  color: var(--brand-primary);
}

/* ============================================================
   Cards & Grid Layouts
   ============================================================ */

/* Three-column card grid */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Two-column grid */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

/* Asymmetric 2/3 + 1/3 */
.grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Four-column */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 0;
}

/* Dark card */
.card-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(196,162,101,0.25);
}

.card-dark h3 {
  color: var(--brand-primary);
}

.card-dark p {
  color: rgba(255,255,255,0.75);
}

/* Bonus card */
.bonus-card {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #1a2535 100%);
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bonus-card .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-card .bonus-title {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}

.bonus-card .bonus-terms {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

/* ============================================================
   Feature Section (2-column side-by-side)
   ============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-text h2 {
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.feature-visual {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #3a4d6a 100%);
  border: 1px solid var(--brand-primary);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.feature-visual-inner {
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-size: 3.5rem;
  font-weight: 900;
}

.feature-visual-sub {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================================
   Payment Methods Section
   ============================================================ */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.payment-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  min-width: 100px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-item:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Stats Row
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  font-family: var(--brand-body-font);
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

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

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

.faq-question:hover {
  background: rgba(196,162,101,0.08);
}

.faq-question .faq-icon {
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

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

/* ============================================================
   Sidebar Layout
   ============================================================ */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-primary);
}

/* ============================================================
   Game Category Bar
   ============================================================ */
.category-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.category-tag {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-tag:hover,
.category-tag.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

/* ============================================================
   Game Cards
   ============================================================ */
.game-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: var(--brand-secondary);
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card-thumb {
  height: 140px;
  background: linear-gradient(135deg, #1a2535 0%, var(--brand-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

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

.game-card-body h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.game-card-body .game-provider {
  font-size: 11px;
  color: var(--brand-primary);
}

/* ============================================================
   Divider
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

.divider-gold {
  border-top-color: var(--brand-primary);
  opacity: 0.4;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #1a2535 50%, #2d1f0e 100%);
  border: 1px solid var(--brand-primary);
  border-radius: 12px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(196,162,101,0.08);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================================
   Info Table
   ============================================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table th,
.info-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.info-table th {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
}

.info-table tr:hover td {
  background: rgba(196,162,101,0.05);
}

.info-table .status-ok {
  color: #27ae60;
  font-weight: 700;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--brand-secondary);
  border-top: 3px solid var(--brand-primary);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

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

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196,162,101,0.25);
}

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

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

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

.footer-responsible {
  background: rgba(0,0,0,0.2);
  padding: 28px 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-responsible-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
}

.footer-logo-badge.age-badge {
  background: rgba(196,162,101,0.2);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  font-size: 16px;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.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);
}

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

.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-page {
  padding: 100px 0 60px;
  min-height: 70vh;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
  font-family: var(--brand-body-font);
}

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

.legal-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}

.legal-page p {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

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

.legal-page ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: #888;
}

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

.breadcrumbs span {
  margin: 0 6px;
  color: #bbb;
}

/* ============================================================
   Utilities
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.text-small { font-size: 12px; }
.text-muted  { color: #888; }
.text-white  { color: #fff; }

/* ============================================================
   Focus States (Accessibility)
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

/* ============================================================
   Responsive — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .card-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Responsive — 992px (Tablet / Mobile 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(--border-color);
    z-index: 999;
  }

  .mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--brand-btn-radius);
    font-size: 15px;
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

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

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

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

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

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

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

  .header-actions .btn {
    display: none;
  }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-bonus {
    padding: 14px 24px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .section {
    padding: 50px 0;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand p {
    max-width: 100%;
  }

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

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

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

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

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
  .trust-bar-inner {
    gap: 20px;
  }

  .trust-item {
    font-size: 12px;
  }

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

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

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

  .payment-grid {
    gap: 10px;
  }

  .payment-item {
    padding: 10px 16px;
    min-width: 80px;
    font-size: 12px;
  }

  .category-bar {
    gap: 8px;
  }

  .category-tag {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ============================================================
   Responsive — 320px
   ============================================================ */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .btn-hero {
    padding: 14px 32px;
    font-size: 15px;
  }

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

  .container {
    padding: 0 14px;
  }
}