/* =============================================
   LAGOS FUN WORLD - Social Casino
   Main Stylesheet
   ============================================= */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --accent-red: #c0392b;
  --accent-red-bright: #e74c3c;
  --accent-gold: #FFD700;
  --accent-gold-dim: #c9a227;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;
  --border-color: #2a2a2a;
  --border-glow: rgba(192, 57, 43, 0.4);
  --neon-red: 0 0 10px rgba(231, 76, 60, 0.7), 0 0 20px rgba(231, 76, 60, 0.4), 0 0 40px rgba(231, 76, 60, 0.2);
  --neon-gold: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.4);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse at top, rgba(192,57,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(255,215,0,0.04) 0%, transparent 60%);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 3px; }

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(8px);
}

.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--neon-red), 0 40px 80px rgba(0,0,0,0.8);
  animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
  from { opacity:0; transform: scale(0.9); }
  to { opacity:1; transform: scale(1); }
}

.age-gate__logo {
  width: 160px;
  margin: 0 auto 24px;
}

.age-gate__badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--neon-red);
}

.age-gate__title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.age-gate__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.age-gate__btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--accent-red), #922b21);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

.btn-age-yes:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-red);
}

.btn-age-no {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-age-no:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.age-gate__disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 24px;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav__links a.active {
  color: var(--accent-gold);
}

.nav__badge-18 {
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 6px;
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192,57,43,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(255,215,0,0.06) 0%, transparent 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

.hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__text {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--accent-red-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-red), #922b21);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.hero__social-badge {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__social-badge span {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--accent-gold);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* Hero visual - slot machine mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--neon-red), 0 40px 80px rgba(0,0,0,0.6);
  max-width: 340px;
  width: 100%;
}

.slot-preview__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slot-preview__value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  display: block;
}

.slot-preview__title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.slot-preview__subtitle {
  text-align: center;
  font-size: 10px;
  color: var(--accent-red-bright);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.slot-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.slot-cell {
  background: var(--bg-secondary);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

.slot-cell.highlight {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(255,215,0,0.4);
  animation: pulse-cell 1.5s ease-in-out infinite;
}

@keyframes pulse-cell {
  0%, 100% { box-shadow: 0 0 8px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.8); }
}

.slot-preview__spin-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--neon-red);
  transition: var(--transition);
  animation: spin-pulse 2s ease-in-out infinite;
}

@keyframes spin-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(231,76,60,0.7), 0 0 20px rgba(231,76,60,0.4); }
  50% { box-shadow: 0 0 20px rgba(231,76,60,0.9), 0 0 40px rgba(231,76,60,0.6); }
}

/* =============================================
   SECTION SHARED
   ============================================= */
section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--accent-red-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-gold);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   SOCIAL NOTICE BANNER
   ============================================= */
.social-notice {
  background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(255,215,0,0.08));
  border-top: 1px solid rgba(192,57,43,0.3);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  padding: 16px 24px;
  text-align: center;
}

.social-notice p {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.social-notice strong {
  color: var(--accent-gold);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   GAMES SECTION / GRID
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192,57,43,0.3);
}

.game-card__thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card__thumb img {
  transform: scale(1.05);
}

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

.game-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.game-card__play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-card__play-overlay {
  opacity: 1;
}

.game-card__play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: var(--neon-red);
}

.game-card__info {
  padding: 20px;
}

.game-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.game-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.game-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
}

.meta-tag.gold {
  border-color: rgba(255,215,0,0.3);
  color: var(--accent-gold-dim);
  background: rgba(255,215,0,0.06);
}

/* =============================================
   RESPONSIBLE GAMING HIGHLIGHTS
   ============================================= */
.resp-banner {
  background: linear-gradient(135deg, #0d1117, #111);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.resp-banner::before {
  content: '🛡️';
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 160px;
  opacity: 0.04;
  pointer-events: none;
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.resp-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.resp-item__text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.resp-item__text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   REGULATORS SECTION
   ============================================= */
.regulators {
  background: var(--bg-secondary);
}

.regulators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.regulator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--transition);
  min-width: 220px;
}

.regulator-card:hover {
  border-color: var(--accent-gold-dim);
  background: var(--bg-card-hover);
}

.regulator-card__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.regulator-card__text {}
.regulator-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.regulator-card__sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 24px;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.footer__brand {}

.footer__brand img {
  height: 56px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer__social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--accent-red-bright);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__bottom-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
}

.footer__pill.red {
  border-color: rgba(192,57,43,0.4);
  color: var(--accent-red-bright);
  background: rgba(192,57,43,0.1);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(180deg, rgba(192,57,43,0.12) 0%, transparent 100%);
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-glow);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* =============================================
   ABOUT / TERMS CONTENT
   ============================================= */
.content-page {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.content-page h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.content-page h3 {
  font-size: 18px;
  color: var(--accent-gold);
  margin-top: 24px;
  margin-bottom: 10px;
}

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

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

.content-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.content-page .highlight-box {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.content-page .highlight-box p {
  color: var(--text-primary);
  margin: 0;
}

.content-page a {
  color: var(--accent-gold);
  text-decoration: none;
}

.content-page a:hover {
  text-decoration: underline;
}

/* =============================================
   RESPONSIBLE GAMING PAGE
   ============================================= */
.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.rg-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.rg-tool-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

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

.rg-tool-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 8px;
}

.rg-tool-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.helplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.helpline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.helpline-card:hover {
  border-color: var(--accent-gold-dim);
  background: var(--bg-card-hover);
}

.helpline-card .icon {
  font-size: 28px;
}

.helpline-card .text strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.helpline-card .text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   TICKER / MARQUEE
   ============================================= */
.ticker-wrap {
  background: rgba(192,57,43,0.12);
  border-top: 1px solid rgba(192,57,43,0.2);
  border-bottom: 1px solid rgba(192,57,43,0.2);
  padding: 10px 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker span {
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker span strong {
  color: var(--accent-gold);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero__visual {
    order: -1;
  }

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

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

@media (max-width: 600px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(10,10,10,0.99);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-top: 1px solid var(--border-color);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  .nav__mobile-toggle {
    display: block;
  }

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

  section {
    padding: 60px 16px;
  }

  .resp-banner {
    padding: 28px;
  }

  .age-gate__box {
    padding: 32px 24px;
  }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red-bright); }
.text-muted { color: var(--text-muted); }
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 40px 0;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

/* Loading animation for slots */
@keyframes reel-spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-400%); }
}

.spinning .slot-cell {
  animation: reel-spin 0.1s linear infinite;
}
