/* ============================================================
   OnlySpins Casino – Main Stylesheet
   Brand: Tropical Sky-Blue Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brand-primary:     #4AABF0;
  --brand-secondary:   #FFFFFF;
  --brand-accent:      #FF5C8A;
  --brand-bg:          #5DC8F7;
  --brand-text:        #333333;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #FF5C8A;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  25px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   14px;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg:         0 8px 32px rgba(0,0,0,0.24);
  --radius-card:       16px;
  --radius-btn:        25px;
  --transition:        0.25s ease;
}

/* ---------- Reset ---------- */
*, *::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.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

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

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Header & Nav ---------- */
.site-header {
  background: var(--brand-header-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
  position: relative;
}

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

.main-nav ul li a {
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

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

.header-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #ff2d6e);
  color: var(--brand-btn-text);
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.header-cta-btn:hover,
.header-cta-btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

/* Burger Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  background: var(--brand-primary);
  color: #fff;
  outline: none;
}

/* ---------- Floating CTA (Fixed – Always Visible) ---------- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent), #ff2d6e);
  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;
  letter-spacing: 0.5px;
}
.floating-cta:hover,
.floating-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  outline: none;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 90vh;
  background: linear-gradient(160deg, #0e90e4 0%, #5DC8F7 45%, #a0e2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,92,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,171,240,0.25) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative wave */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--brand-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #ff2d6e);
  color: #fff;
  font-family: var(--brand-head-font);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(255,92,138,0.45);
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-body-font);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-accent), #ff2d6e);
  color: #fff;
  font-family: var(--brand-head-font);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  padding: 18px 52px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(255,92,138,0.5);
  letter-spacing: 0.5px;
}
.btn-hero:hover,
.btn-hero:focus {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(255,92,138,0.6);
  outline: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-primary), #2196F3);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.hero-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}

/* Hero Feature Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.hero-pill {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ---------- Sections General ---------- */
section {
  padding: 64px 0;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-title-dark {
  color: var(--brand-text);
}
.section-sub-dark {
  color: #555;
}

/* ---------- Features Section (3-col grid) ---------- */
.features-section {
  background: rgba(255,255,255,0.08);
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

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

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 10px;
}

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

/* ---------- Bonus Section ---------- */
.bonus-section {
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

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

.bonus-details {
  background: linear-gradient(135deg, var(--brand-primary), #2196F3);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  color: #fff;
}

.bonus-details h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(255,92,138,0.4);
}

.bonus-details p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.bonus-terms-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-terms-list li::before {
  content: '✓';
  color: #aef7a0;
  font-weight: 700;
  flex-shrink: 0;
}

.bonus-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-accent);
}

.info-card h3 {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 8px;
}

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

/* ---------- Games Section (4-col grid) ---------- */
.games-section {
  background: var(--brand-bg);
}

.games-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-pill {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}

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

.game-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.game-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--brand-primary), #a0e2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.game-card-body h4 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.game-card-body span {
  font-size: 12px;
  color: #888;
}

.game-card-body .rtp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 6px;
}

/* ---------- Payments Section (horizontal) ---------- */
.payments-section {
  background: #fff;
  padding: 48px 0;
}

.payments-section .section-title {
  color: var(--brand-text);
}
.payments-section .section-sub {
  color: #666;
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.payment-badge {
  background: #f5f9ff;
  border: 2px solid #e3f0fc;
  border-radius: 12px;
  padding: 14px 24px;
  text-align: center;
  min-width: 110px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.payment-badge:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.payment-badge .pay-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

.payment-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-text);
}

/* ---------- Trust / Stats Section (3-col) ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--brand-primary), #2196F3);
  padding: 56px 0;
}

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

.stat-block {
  color: #fff;
}

.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  display: block;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ---------- Content / Article Body ---------- */
.content-section {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: var(--shadow-md);
}

.content-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 14px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--brand-primary);
  display: inline-block;
}
.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 10px;
  margin-top: 24px;
}

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

.content-section ul,
.content-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-section ul li {
  list-style: disc;
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.7;
  padding: 3px 0;
}

.content-section ol li {
  list-style: decimal;
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.7;
  padding: 3px 0;
}

/* ---------- Info Table ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}
.info-table th {
  background: var(--brand-primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.info-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e8f4ff;
  color: var(--brand-text);
}
.info-table tr:nth-child(even) td {
  background: #f5f9ff;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-accent), #ff2d6e);
  border-radius: var(--radius-card);
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 6px 30px rgba(255,92,138,0.35);
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 40px;
  margin: 32px 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 18px 0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.faq-a {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1a2a3a;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.footer-logo-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.footer-logo-badge .badge-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.footer-logo-badge .badge-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  text-align: center;
}

.badge-18 {
  background: var(--brand-accent);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  font-weight: 900;
  border: none;
  min-width: unset;
  padding: 0;
}

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

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-legal-links a:hover,
.footer-legal-links a:focus {
  color: var(--brand-primary);
  outline: none;
}

.footer-cta-wrap {
  text-align: center;
  padding: 24px 0;
}

/* ---------- Legal Page ---------- */
.legal-hero {
  background: linear-gradient(135deg, var(--brand-primary), #2196F3);
  padding: 100px 20px 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.legal-content {
  background: #fff;
  padding: 48px 40px;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-text);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand-primary);
  display: inline-block;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 18px 0 8px;
}

.legal-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  list-style: disc;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  padding: 3px 0;
}

.legal-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

/* ---------- Responsible Gambling ---------- */
.rg-section {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--brand-accent);
}
.rg-section p {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 4px;
  }
  .mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content-section {
    padding: 32px 20px;
  }
  .legal-content {
    padding: 32px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }
  .hero {
    min-height: 70vh;
    padding: 100px 20px 80px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .payments-row {
    gap: 10px;
  }
  .payment-badge {
    min-width: 90px;
    padding: 10px 14px;
  }
  .footer-logos-row {
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .hero-pills {
    display: none;
  }
}

@media (max-width: 320px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .header-cta-btn {
    display: none;
  }
}