/* =============================================
   PRAGMATIC PLAY NIGERIA - MAIN STYLESHEET
   Dark theme | Black + Muted Orange | Mobile-first
   ============================================= */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --orange: #c8621a;
  --orange-light: #e07820;
  --orange-muted: #a04e12;
  --orange-glow: rgba(200, 98, 26, 0.12);
  --text-primary: #f0f0f0;
  --text-secondary: #a8a8a8;
  --text-muted: #666666;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --green: #1e6b2e;
  --green-light: #2a9040;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.5);
  --shadow-orange: 0 0 20px rgba(200,98,26,0.18);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; min-height: 100vh; }
a { color: var(--orange-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.section-title { font-size: 1.55rem; font-weight: 700; margin-bottom: 8px; }
.section-subtitle { color: var(--text-secondary); margin-bottom: 28px; font-size: 0.9rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* HEADER */
.site-header { background: var(--bg-secondary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.site-logo { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.site-logo span { color: var(--orange); }
.site-logo .logo-sub { font-size: 0.62rem; font-weight: 600; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); padding: 2px 6px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.4px; }
.main-nav { display: none; align-items: center; gap: 2px; }
.main-nav a { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; padding: 7px 11px; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--text-primary); background: var(--bg-card); }
.nav-cta { background: var(--orange) !important; color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--orange-light) !important; }
.mobile-menu-btn { background: none; border: 1px solid var(--border); color: var(--text-primary); width: 36px; height: 36px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-nav { display: none; background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 14px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: var(--text-secondary); font-size: 0.88rem; padding: 10px 12px; border-radius: 6px; margin-bottom: 3px; transition: all 0.2s; }
.mobile-nav a:hover { background: var(--bg-card); color: var(--text-primary); }
.mobile-nav .mnav-cta { background: var(--orange); color: #fff !important; text-align: center; font-weight: 600; margin-top: 8px; }
@media (min-width: 900px) { .main-nav { display: flex; } .mobile-menu-btn { display: none; } }

/* BREADCRUMB */
.breadcrumb { padding: 11px 0; font-size: 0.78rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { margin: 0 5px; }

/* HERO */
.hero { background: linear-gradient(135deg, #0f0f0f 0%, #120a04 100%); padding: 56px 0 44px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -50%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,98,26,0.07) 0%, transparent 70%); pointer-events: none; }
.hero h1 { font-size: 1.9rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 26px; max-width: 540px; line-height: 1.7; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (min-width: 768px) { .hero h1 { font-size: 2.5rem; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: 7px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-outline { background: transparent; color: var(--orange-light); border: 1.5px solid var(--orange-muted); }
.btn-outline:hover { background: var(--orange-glow); color: var(--orange-light); }
.btn-sm { padding: 7px 13px; font-size: 0.78rem; }
.btn-full { width: 100%; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); color: #fff; }
.btn-ghost { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-light); }

/* STATS BAR */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat-item { padding: 18px 14px; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item:nth-child(even) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-value { font-size: 1.4rem; font-weight: 800; color: var(--orange-light); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
@media (min-width: 560px) { .stats-bar-inner { grid-template-columns: repeat(4, 1fr); } .stat-item { border-bottom: none !important; } .stat-item:nth-child(even) { border-right: 1px solid var(--border); } .stat-item:last-child { border-right: none; } }

/* FILTER BAR */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.filter-btn { padding: 6px 13px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--orange-muted); color: var(--orange-light); background: var(--orange-glow); }

/* GAME GRID */
.game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .game-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .game-grid { grid-template-columns: repeat(4, 1fr); } }
.game-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.game-card:hover { border-color: var(--orange-muted); transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.game-card-img { aspect-ratio: 4/3; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; }
.game-card-body { padding: 10px 12px 12px; }
.game-card-name { font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; color: var(--text-primary); }
.game-card-meta { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.badge { font-size: 0.66rem; font-weight: 700; padding: 2px 7px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-rtp { background: rgba(26,107,46,0.35); color: #6fcf85; border: 1px solid rgba(111,207,133,0.15); }
.badge-high { background: rgba(140,30,30,0.35); color: #f08080; border: 1px solid rgba(240,128,128,0.15); }
.badge-med { background: rgba(130,100,10,0.35); color: #f0c040; border: 1px solid rgba(240,192,64,0.15); }
.badge-low { background: rgba(26,107,46,0.35); color: #6fcf85; border: 1px solid rgba(111,207,133,0.15); }
.badge-new { background: rgba(200,98,26,0.25); color: var(--orange-light); border: 1px solid rgba(200,98,26,0.25); }
.game-card-btns { display: flex; gap: 5px; }
.game-card-btns .btn { flex: 1; font-size: 0.72rem; padding: 6px 6px; }

/* CASINO CARDS */
.casino-grid { display: flex; flex-direction: column; gap: 16px; }
.casino-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; transition: border-color 0.2s; }
.casino-card:hover { border-color: var(--orange-muted); }
.casino-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.casino-logo { width: 68px; height: 42px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-align: center; flex-shrink: 0; padding: 5px; line-height: 1.3; }
.casino-name { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.casino-bonus { color: var(--orange-light); font-size: 0.82rem; font-weight: 600; }
.casino-rank-badge { font-size: 0.68rem; font-weight: 800; color: var(--orange); background: var(--orange-glow); border: 1px solid var(--orange-muted); padding: 2px 7px; border-radius: 3px; text-transform: uppercase; display: inline-block; margin-bottom: 6px; }
.casino-features { list-style: none; margin-bottom: 14px; }
.casino-features li { font-size: 0.8rem; color: var(--text-secondary); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.casino-features li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.casino-card-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.casino-card h2 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }

/* RTP TABLE */
.rtp-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.rtp-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.rtp-table th { background: var(--bg-card); padding: 10px 13px; text-align: left; font-size: 0.74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.rtp-table td { padding: 10px 13px; font-size: 0.84rem; border-bottom: 1px solid var(--border); }
.rtp-table tr:last-child td { border-bottom: none; }
.rtp-table tr:hover td { background: var(--bg-card-hover); }
.rtp-table td a { color: var(--orange-light); }

/* CATEGORY CARDS */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .category-grid { grid-template-columns: repeat(6, 1fr); } }
.category-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 12px; text-align: center; transition: all 0.25s; text-decoration: none; display: block; color: inherit; }
.category-card:hover { border-color: var(--orange-muted); background: var(--bg-card-hover); color: inherit; transform: translateY(-2px); }
.category-card-icon { font-size: 1.9rem; margin-bottom: 7px; }
.category-card-name { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.category-card-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.4; }

/* FAQ ACCORDION */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 15px 18px; font-size: 0.88rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; background: var(--bg-card); transition: background 0.2s; list-style: none; color: var(--text-primary); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--bg-card-hover); }
details[open] .faq-q { color: var(--orange-light); }
.faq-arrow { transition: transform 0.2s; color: var(--text-muted); flex-shrink: 0; }
details[open] .faq-arrow { transform: rotate(180deg); color: var(--orange-light); }
.faq-a { padding: 0 18px 15px; font-size: 0.855rem; color: var(--text-secondary); line-height: 1.75; background: var(--bg-secondary); }
.faq-a a { color: var(--orange-light); }

/* GAME PAGE */
.game-hero { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 28px 0; }
.game-hero-inner { display: grid; gap: 22px; }
@media (min-width: 768px) { .game-hero-inner { grid-template-columns: 220px 1fr; align-items: start; } }
.game-thumb { aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.game-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 6px; }
.game-subtitle { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 14px; }
.game-quick-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }

.stats-grid { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.stats-grid-inner { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 500px) { .stats-grid-inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 800px) { .stats-grid-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-row { padding: 12px 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-row-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.stat-row-value { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.stat-row-value.hi { color: var(--orange-light); }

.content-body { max-width: 780px; }
.content-body h2 { font-size: 1.25rem; font-weight: 700; margin: 26px 0 10px; padding-top: 6px; }
.content-body h3 { font-size: 1rem; font-weight: 700; margin: 18px 0 7px; color: var(--orange-light); }
.content-body p { margin-bottom: 12px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }
.content-body ul, .content-body ol { margin: 0 0 12px 18px; color: var(--text-secondary); font-size: 0.9rem; }
.content-body li { margin-bottom: 5px; line-height: 1.7; }
.content-body a { color: var(--orange-light); }
.content-body a:hover { color: var(--orange); text-decoration: underline; }

/* CTA CASINO BLOCK */
.play-cta-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin: 28px 0; }
.play-cta-block h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.play-cta-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.play-cta-item:last-child { border-bottom: none; }
.play-cta-name { font-weight: 600; font-size: 0.88rem; }
.play-cta-bonus { font-size: 0.78rem; color: var(--orange-light); margin-top: 1px; }

/* QUICK LINKS */
.quick-links { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.quick-links h3 { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.quick-links a { display: block; color: var(--text-secondary); font-size: 0.83rem; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.quick-links a:last-child { border-bottom: none; }
.quick-links a:hover { color: var(--orange-light); }
.quick-links a::before { content: '→ '; color: var(--orange-muted); }

/* CALLOUT */
.callout { border-left: 3px solid var(--orange); background: var(--orange-glow); padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; margin: 18px 0; font-size: 0.87rem; color: var(--text-secondary); }
.callout strong { color: var(--orange-light); display: block; margin-bottom: 3px; }

/* PAGE HEADER */
.page-header { background: var(--bg-secondary); padding: 36px 0 28px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--text-secondary); max-width: 620px; font-size: 0.9rem; }

/* INFO SECTIONS */
.info-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.info-section:last-child { border-bottom: none; }
.info-section h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.info-section p { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }

/* ARTICLE */
.article-header { padding: 36px 0 24px; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: 1.65rem; font-weight: 800; margin-bottom: 10px; }
.article-meta { font-size: 0.77rem; color: var(--text-muted); display: flex; gap: 14px; flex-wrap: wrap; }
.article-toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin: 22px 0; }
.article-toc h3 { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.article-toc ol { margin-left: 16px; }
.article-toc li { margin-bottom: 5px; }
.article-toc a { color: var(--text-secondary); font-size: 0.83rem; }
.article-toc a:hover { color: var(--orange-light); }

/* RESPONSIBLE GAMBLING */
.rg-bar { background: #0d0d0d; border-top: 1px solid var(--border); padding: 9px 0; text-align: center; font-size: 0.7rem; color: var(--text-muted); }
.rg-bar a { color: var(--text-muted); text-decoration: underline; }

/* FOOTER */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 44px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-logo { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 9px; border-radius: 3px; border: 1px solid var(--border); color: var(--text-muted); background: var(--bg-card); text-transform: uppercase; letter-spacing: 0.3px; }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 12px; padding-bottom: 7px; border-bottom: 1px solid var(--border); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid var(--border); padding: 14px 0; font-size: 0.7rem; color: var(--text-muted); line-height: 1.7; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 5px; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; } }

/* BONUS CARDS */
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 14px; transition: border-color 0.2s; }
.bonus-card:hover { border-color: var(--orange-muted); }
.bonus-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.bonus-amount { font-size: 1.2rem; font-weight: 800; color: var(--orange-light); margin-bottom: 7px; }
.bonus-card p { font-size: 0.83rem; color: var(--text-secondary); margin-bottom: 12px; }
.bonus-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 2px 7px; background: var(--orange-glow); border: 1px solid var(--orange-muted); color: var(--orange-light); border-radius: 3px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.4px; }

/* LAYOUT HELPERS */
.page-two-col { display: grid; gap: 28px; }
@media (min-width: 900px) { .page-two-col { grid-template-columns: 1fr 270px; } }
.sidebar .quick-links { position: sticky; top: 76px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.search-bar { display: flex; gap: 8px; margin-bottom: 18px; }
.search-input { flex: 1; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); padding: 9px 13px; border-radius: 7px; font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--orange-muted); }
.search-input::placeholder { color: var(--text-muted); }

/* 404 */
.not-found { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 48px 16px; }
.not-found .err-code { font-size: 5rem; color: var(--orange); font-weight: 900; line-height: 1; }
.not-found h2 { font-size: 1.4rem; margin: 12px 0 8px; }
.not-found p { color: var(--text-secondary); margin-bottom: 22px; }
.not-found-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* UTILS */
.text-orange { color: var(--orange-light); }
.text-muted-c { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}

/* Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th { background: var(--bg-card); padding: 10px 13px; text-align: left; font-size: 0.73rem; color: var(--text-muted); text-transform: uppercase; border-bottom: 1px solid var(--border); }
.data-table td { padding: 10px 13px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-card-hover); }

@media (max-width: 400px) { .hero h1 { font-size: 1.55rem; } .section { padding: 30px 0; } }
