/* 7JL Casino - Static Site Design System */
/* Dark Casino Theme: Black + Dark Red + Gold */

:root {
  --bg: #09090f;
  --bg-card: #0e0e14;
  --bg-muted: #1d1d22;
  --fg: #f2f2f2;
  --fg-muted: #9a9aa0;
  --primary: #ad1f1f;
  --primary-light: #cc3333;
  --secondary: #6b1414;
  --gold: #eab308;
  --gold-dark: #ca8a04;
  --gold-light: #facc15;
  --border: #2a2a30;
  --radius: 0.75rem;
  --shadow-gold: 0 0 20px rgba(234,179,8,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-header .logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: var(--fg-muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: var(--radius); font-weight: 600;
  font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; }

/* Mobile menu */
.mobile-toggle {
  display: none; background: none; border: none; color: var(--fg-muted);
  cursor: pointer; padding: 0.5rem; font-size: 1.5rem;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0.5rem;
  padding: 1rem 0; border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.625rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: var(--fg-muted); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 5rem 1rem;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,15,0.7), rgba(9,9,15,0.4), var(--bg));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 .gold { color: var(--gold); }
.hero .subtitle { font-size: 1.125rem; color: var(--fg-muted); margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-muted);
  border: 1px solid rgba(234,179,8,0.3); border-radius: 9999px; padding: 0.5rem 1rem;
  font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.5rem;
}
.hero .bonus-highlight {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.3);
  border-radius: 1rem; padding: 0.75rem 1.5rem; margin-bottom: 1.5rem;
}
.hero .bonus-highlight .amount { font-size: 1.75rem; font-weight: 800; color: var(--gold); }
.hero .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.hero .stat {
  text-align: center; padding: 1rem; border-radius: var(--radius);
  background: rgba(9,9,15,0.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(234,179,8,0.2);
}
.hero .stat .num { font-size: 1.75rem; font-weight: 800; color: var(--gold); }
.hero .stat .label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero .bonus-highlight .amount { font-size: 1.25rem; }
  .hero .stats { grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
}

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section-dark { background: var(--bg); }
.section-card { background: var(--bg-card); }
.section-title { font-size: 2rem; margin-bottom: 0.5rem; }
.section-title .gold { color: var(--gold); }
.section-subtitle { color: var(--fg-muted); margin-bottom: 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* ===== GAME CARDS ===== */
.game-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.game-card {
  display: block; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--bg-muted), var(--bg));
  border: 1px solid var(--border); transition: all 0.3s;
}
.game-card:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(234,179,8,0.3); box-shadow: var(--shadow-gold); }
.game-card .cover { height: 160px; overflow: hidden; position: relative; }
.game-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.game-card:hover .cover img { transform: scale(1.1); }
.game-card .cover .overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent); }
.game-card .info { padding: 1.25rem; }
.game-card .info h3 { font-size: 1.25rem; margin-bottom: 0.5rem; transition: color 0.3s; }
.game-card:hover .info h3 { color: var(--gold); }
.game-card .info p { font-size: 0.875rem; color: var(--fg-muted); }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.feature-card {
  text-align: center; padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-muted); border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(234,179,8,0.3); box-shadow: var(--shadow-gold); }
.feature-card .icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: rgba(234,179,8,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.875rem; color: var(--fg-muted); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 1rem 1.5rem; background: none; border: none; color: var(--fg);
  font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--fg-muted); transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-card {
  border-radius: var(--radius); background: var(--bg-muted);
  border: 1px solid var(--border); padding: 1.5rem; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(234,179,8,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.blog-card .thumb {
  height: 140px; border-radius: 0.5rem; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(173,31,31,0.2), rgba(234,179,8,0.2));
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.75rem; }
.blog-card .meta .cat { background: rgba(173,31,31,0.2); color: var(--primary-light); padding: 0.125rem 0.5rem; border-radius: 9999px; font-weight: 500; }
.blog-card .meta .date { color: var(--fg-muted); }
.blog-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card:hover h3 { color: var(--gold); }
.blog-card .excerpt { font-size: 0.875rem; color: var(--fg-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination button, .pagination .page-num {
  padding: 0.5rem 1rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-muted); color: var(--fg-muted); font-size: 0.875rem; cursor: pointer;
  transition: all 0.2s;
}
.pagination button:hover, .pagination .page-num:hover { border-color: var(--gold); color: var(--gold); }
.pagination .page-num.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 700; }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination .page-info { font-size: 0.875rem; color: var(--fg-muted); margin: 0 0.5rem; }
.pagination .jump-to { display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem; }
.pagination .jump-to input {
  width: 60px; padding: 0.375rem 0.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg); color: var(--fg);
  font-size: 0.875rem; text-align: center;
}

/* Search */
.search-box { max-width: 420px; margin: 0 auto 2.5rem; position: relative; }
.search-box input {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-muted); color: var(--fg);
  font-size: 1rem; transition: border-color 0.2s;
}
.search-box input:focus { outline: none; border-color: rgba(234,179,8,0.5); }
.search-box .search-icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--fg-muted); font-size: 1.125rem; }

/* Loading & Error */
.loading-state, .error-state, .empty-state {
  text-align: center; padding: 5rem 1rem; color: var(--fg-muted);
}
.loading-state .spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 0.75rem 0; font-size: 0.875rem;
}
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--fg-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.breadcrumb .sep { color: var(--fg-muted); }

/* ===== GAME PAGE COVER ===== */
.page-cover { position: relative; height: 280px; overflow: hidden; }
.page-cover img { width: 100%; height: 100%; object-fit: cover; }
.page-cover .overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(9,9,15,0.5), transparent); }
.page-cover .info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem;
}
.page-cover .info .container { display: flex; align-items: center; gap: 1rem; }
.page-cover .icon-badge {
  width: 64px; height: 64px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.page-cover h1 { font-size: 2.25rem; }
.page-cover .tagline { color: var(--fg-muted); }

@media (min-width: 768px) { .page-cover { height: 380px; } }

/* ===== MINI GAME GRID ===== */
.mini-game-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.mini-game-card {
  border-radius: var(--radius); overflow: hidden; background: var(--bg-muted);
  border: 1px solid var(--border); transition: all 0.3s;
}
.mini-game-card:hover { border-color: rgba(234,179,8,0.3); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.mini-game-card .thumb { height: 160px; overflow: hidden; position: relative; }
.mini-game-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mini-game-card:hover .thumb img { transform: scale(1.1); }
.mini-game-card .thumb .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,15,0.8), transparent); }
.mini-game-card .body { padding: 1rem; }
.mini-game-card .body h3 { font-size: 1.125rem; margin-bottom: 0.25rem; transition: color 0.3s; }
.mini-game-card:hover .body h3 { color: var(--gold); }
.mini-game-card .body p { font-size: 0.8125rem; color: var(--fg-muted); }
.mini-game-card .tags { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-top: 0.5rem; }
.mini-game-card .tag {
  padding: 0.125rem 0.5rem; border-radius: var(--radius); font-size: 0.75rem;
  background: var(--bg); color: var(--fg-muted);
}
.mini-game-card .tag.green { background: rgba(34,197,94,0.15); color: #4ade80; }
.mini-game-card .tag.gold { background: rgba(234,179,8,0.15); color: var(--gold); }
.mini-game-card .live-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: #dc2626; color: #fff; font-size: 0.6875rem; font-weight: 700;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  display: flex; align-items: center; gap: 0.375rem;
}
.mini-game-card .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 3rem 1rem; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative; overflow: hidden;
}
.cta-banner.gold-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.cta-banner.gold-cta h2, .cta-banner.gold-cta p { color: var(--bg); }
.cta-banner.blue-cta { background: linear-gradient(135deg, #2563eb, #1e40af); }
.cta-banner.green-cta { background: linear-gradient(135deg, #16a34a, #166534); }
.cta-banner.purple-cta { background: linear-gradient(135deg, #9333ea, #6b21a8); }
.cta-banner.orange-cta { background: linear-gradient(135deg, #ea580c, #9a3412); }
.cta-banner h2 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border); }
.footer-providers {
  border-bottom: 1px solid var(--border); padding: 2rem 0; text-align: center;
  background: rgba(9,9,15,0.5);
}
.footer-providers h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 1.5rem; }
.provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.provider-badge {
  height: 48px; padding: 0 1rem; display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem; background: var(--bg-muted); font-size: 0.75rem; font-weight: 700;
  color: var(--fg-muted); transition: all 0.2s; min-width: 80px;
}
.provider-badge:hover { background: rgba(173,31,31,0.1); color: var(--gold); }

.footer-main { padding: 3rem 0; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-brand p { font-size: 0.875rem; color: var(--fg-muted); margin-top: 1rem; line-height: 1.7; }
.footer-brand .logo img { height: 48px; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted); transition: all 0.2s; font-size: 1.125rem;
}
.social-links a:hover { background: var(--primary); color: #fff; }

.footer-col h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.footer-contact .icon { color: var(--gold); font-size: 1rem; margin-top: 0.125rem; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.5rem 0;
  background: rgba(9,9,15,0.5);
}
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { font-size: 0.75rem; color: var(--fg-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); }
.footer-disclaimer { text-align: center; font-size: 0.75rem; color: rgba(154,154,160,0.5); margin-top: 1rem; max-width: 768px; margin-left: auto; margin-right: auto; }

/* ===== VIP TIERS ===== */
.vip-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.vip-card {
  border-radius: var(--radius); background: var(--bg-muted); padding: 1.5rem;
  text-align: center; border: 1px solid var(--border); transition: all 0.3s; position: relative;
}
.vip-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow-gold); }
.vip-card .crown { font-size: 2.5rem; margin-bottom: 0.5rem; }
.vip-card .tier-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.vip-card .tier-name.bronze { color: #d97706; }
.vip-card .tier-name.silver { color: #9ca3af; }
.vip-card .tier-name.gold-tier { color: var(--gold); }
.vip-card .tier-name.platinum { color: #cbd5e1; }
.vip-card .min-turnover { color: var(--fg-muted); margin-bottom: 1rem; font-size: 0.875rem; }
.vip-card ul { list-style: none; font-size: 0.875rem; color: var(--fg-muted); }
.vip-card li { padding: 0.375rem 0; display: flex; align-items: center; justify-content: center; gap: 0.375rem; }

/* ===== BONUS CARDS ===== */
.bonus-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.bonus-card {
  text-align: center; padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-muted); border: 1px solid var(--border); transition: all 0.3s;
}
.bonus-card:hover { transform: translateY(-4px) scale(1.03); border-color: rgba(234,179,8,0.3); }
.bonus-card.highlight { border-color: rgba(234,179,8,0.5); box-shadow: var(--shadow-gold); }
.bonus-card .bonus-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.bonus-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.bonus-card .amount { font-size: 1.75rem; font-weight: 800; color: var(--gold); margin-bottom: 0.25rem; }
.bonus-card p { font-size: 0.875rem; color: var(--fg-muted); }

/* ===== STEPS ===== */
.steps-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.step-card {
  text-align: center; padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-muted); border: 1px solid var(--border); transition: all 0.3s;
}
.step-card:hover { border-color: rgba(234,179,8,0.3); transform: translateY(-4px); }
.step-card .step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  color: var(--bg); font-weight: 700; display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: 1rem; font-size: 1.125rem;
}
.step-card h3 { margin-bottom: 0.25rem; }
.step-card p { font-size: 0.875rem; color: var(--fg-muted); }

/* ===== PRIVACY CONTENT ===== */
.content-block { max-width: 896px; margin: 0 auto; }
.content-block .block {
  background: var(--bg-muted); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem;
}
.content-block h2 { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.content-block h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.content-block p { color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.7; }
.content-block ul { color: var(--fg-muted); padding-left: 1.25rem; margin-bottom: 1rem; }
.content-block li { margin-bottom: 0.5rem; }

/* ===== SIMPLE HERO (sub pages) ===== */
.page-hero {
  position: relative; min-height: 280px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; text-align: center; padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--bg), #1a0a0a, var(--bg));
}
.page-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(173,31,31,0.15), transparent);
  border-radius: 50%; pointer-events: none;
}
.page-hero .icon-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(234,179,8,0.15); display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: 1.5rem; font-size: 2.5rem;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-hero p { color: var(--fg-muted); max-width: 640px; margin: 0 auto; font-size: 1.125rem; }

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
.prose { max-width: 768px; }
.prose p { color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.7; }
.hidden { display: none !important; }
