/* ============================================================
   LibraBets.vip — Main Stylesheet
   Brand: LibraBet Casino | Niche: Online Casino Italy
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #1DB954;
  --brand-secondary:   #E63946;
  --brand-accent:      #3B82F6;
  --brand-bg:          #0A0A0A;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #111111;
  --brand-btn-bg:      #1DB954;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #181818;
  --brand-surface:     #141414;
  --brand-border:      transparent;
  --transition-base:   0.2s 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.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: #17a344;
}

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

ul {
  list-style: none;
}

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

/* --- Skip to content --- */
.skip-to-content {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(29,185,84,0.12);
  color: var(--brand-primary);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-cta {
  background: var(--brand-primary);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--brand-btn-radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
  display: inline-block;
}

.btn-header-cta:hover {
  background: #17a344;
  color: #fff;
  transform: translateY(-1px);
}

.btn-header-secondary {
  background: transparent;
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--brand-btn-radius);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  display: inline-block;
}

.btn-header-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 24px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 40%, #0d1a0d 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,185,84,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(230,57,70,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}

/* Hero Left — Main Text Block */
.hero-left {
  grid-column: 1 / 3;
  padding: 60px 40px 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(29,185,84,0.15);
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

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

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

.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* Hero Right — Promo Card */
.hero-right {
  grid-column: 3 / 4;
}

.hero-promo-card {
  background: linear-gradient(145deg, #1a1a1a, #141414);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-promo-card-inner {
  padding: 36px 28px;
  text-align: center;
}

.promo-tag {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--brand-head-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.promo-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.promo-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-stat {
  text-align: center;
  padding: 0 8px;
}

.hero-stat-value {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.btn:focus {
  outline: 3px solid rgba(29,185,84,0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(29,185,84,0.35);
}

.btn-primary:hover {
  background: #17a344;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,185,84,0.45);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(230,57,70,0.3);
}

.btn-secondary:hover {
  background: #c62f3b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--brand-text);
  border: 2px solid rgba(255,255,255,0.3);
}

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

.btn-hero {
  font-size: 16px;
  padding: 16px 40px;
  box-shadow: 0 6px 24px rgba(29,185,84,0.4);
}

.btn-cta {
  background: var(--brand-primary);
  color: #fff;
  font-size: 15px;
  padding: 15px 36px;
  box-shadow: 0 4px 20px rgba(29,185,84,0.35);
}

.btn-cta:hover {
  background: #17a344;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29,185,84,0.45);
}

/* ============================================================
   FLOATING CTA 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-family: var(--brand-head-font);
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 80px 0;
}

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

.section-dark {
  background: var(--brand-surface);
}

.section-darker {
  background: #0d0d0d;
}

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

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

.section-label {
  display: inline-block;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ============================================================
   FEATURE STRIP (3 items, full-width, single row)
   ============================================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.feature-strip-item {
  background: var(--brand-surface);
  padding: 36px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-strip-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(29,185,84,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-strip-icon.red {
  background: rgba(230,57,70,0.12);
}

.feature-strip-icon.blue {
  background: rgba(59,130,246,0.12);
}

.feature-strip-body h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.feature-strip-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   BONUS SECTION — Asymmetric 2/3 + 1/3
   ============================================================ */
.bonus-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.bonus-main-card {
  background: linear-gradient(135deg, #141414 0%, #1a2a1a 100%);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.bonus-main-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(29,185,84,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-main-card h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}

.bonus-highlight {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-terms-list {
  margin: 24px 0 32px;
}

.bonus-terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-terms-list li:last-child {
  border-bottom: none;
}

.bonus-terms-list li span.check {
  color: var(--brand-primary);
  font-weight: 700;
  min-width: 16px;
}

/* Bonus Sidebar */
.bonus-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-bonus-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  padding: 24px 22px;
}

.mini-bonus-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.mini-bonus-value {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 6px;
}

.mini-bonus-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   GAME CATEGORIES — 4-column grid
   ============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.game-card-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.game-card-placeholder.slots   { background: linear-gradient(135deg, #1a0a2e, #2d1b69); }
.game-card-placeholder.live    { background: linear-gradient(135deg, #1a0a0a, #3d0a0a); }
.game-card-placeholder.table   { background: linear-gradient(135deg, #0a1a0a, #0a3d0a); }
.game-card-placeholder.jackpot { background: linear-gradient(135deg, #1a1200, #3d2d00); }

.game-card-body {
  padding: 18px 16px;
}

.game-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.game-card-count {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PROVIDERS SECTION — Full-width single column + logo row
   ============================================================ */
.providers-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.provider-badge {
  background: var(--brand-card-bg);
  border-radius: 10px;
  padding: 14px 22px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, background 0.2s;
}

.provider-badge:hover {
  color: var(--brand-text);
  background: #222;
}

/* ============================================================
   PAYMENTS SECTION — 2-column side by side
   ============================================================ */
.payments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.payments-text h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.payments-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-method-item {
  background: var(--brand-card-bg);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}

.payment-method-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.payment-method-name {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.payment-method-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* ============================================================
   LICENSING & SECURITY SECTION — 3-column
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--brand-card-bg);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

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

.security-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--brand-text);
}

.security-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIBLE GAMING — Full width, single column
   ============================================================ */
.resp-gaming-banner {
  background: linear-gradient(135deg, #141414, #1a1a2e);
  border-radius: 20px;
  padding: 56px 60px;
  text-align: center;
}

.resp-gaming-banner h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.resp-gaming-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.resp-tools-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.resp-tool-badge {
  background: rgba(255,255,255,0.07);
  border-radius: 30px;
  padding: 10px 22px;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   FAQ SECTION — 2-column
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.faq-intro h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.faq-intro p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

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

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

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

.faq-question span.faq-icon {
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 400;
  min-width: 18px;
  text-align: center;
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION — Full width
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0d1a0d 0%, #141414 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

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

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

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

/* Footer Logos Row */
.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-badge {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

.footer-age-badge {
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
}

.footer-responsible-row {
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-resp-link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}

.footer-resp-link:hover {
  color: rgba(255,255,255,0.7);
}

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

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

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

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

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  padding: 16px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 10px;
}

/* ============================================================
   LEGAL PAGE STYLES
   ============================================================ */
.legal-page-content {
  padding: 120px 0 80px;
}

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

.legal-last-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.legal-section p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

.legal-section ul li {
  margin-bottom: 6px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    grid-column: 1;
    padding: 50px 0 20px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-right {
    grid-column: 1;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .bonus-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mini-bonus-card {
    flex: 1;
    min-width: 200px;
  }

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

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

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

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

  .feature-strip {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV
   ============================================================ */
@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 16px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 999;
    gap: 4px;
  }

  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 60vh;
    padding-top: 80px;
  }

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

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

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

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

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

  .resp-gaming-banner {
    padding: 40px 24px;
  }

  .bonus-main-card {
    padding: 32px 24px;
  }

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

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

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

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

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .footer-logos-row {
    gap: 10px;
  }

  .resp-tools-row {
    flex-direction: column;
    align-items: center;
  }
}