/* ===== RollDorado Static — Complete Styles ===== */
/* SINGLE CSS FILE FOR ALL PAGES — /css/styles.css */

/* --- Reset & Box-sizing --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* --- CSS Variables --- */
:root {
  --background: 220 20% 7%;
  --foreground: 40 50% 92%;
  --card: 220 18% 11%;
  --card-foreground: 40 50% 92%;
  --popover: 220 18% 11%;
  --popover-foreground: 40 50% 92%;
  --primary: 42 80% 50%;
  --primary-foreground: 220 20% 7%;
  --secondary: 220 15% 16%;
  --secondary-foreground: 40 50% 92%;
  --muted: 220 15% 16%;
  --muted-foreground: 220 10% 55%;
  --accent: 145 60% 40%;
  --accent-foreground: 220 20% 7%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 15% 20%;
  --input: 220 15% 20%;
  --ring: 42 80% 50%;
  --radius: 0.75rem;
  --gold: 42 80% 50%;
  --gold-light: 42 90% 65%;
  --gold-dark: 42 70% 35%;
  --casino-green: 145 60% 40%;
  --casino-dark: 220 20% 5%;
}

/* --- Body & Typography --- */
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
* { border-color: hsl(var(--border)); }

/* --- Container --- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; width: 100%; }

/* --- Gradient utilities --- */
.gold-gradient { background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light))); }
.gold-text {
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light)));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.casino-card {
  background: linear-gradient(145deg, hsl(var(--card)), hsl(220, 18%, 14%));
  border: 1px solid hsl(var(--border));
}
.hero-glow { box-shadow: 0 0 60px hsl(var(--gold) / 0.15), 0 0 120px hsl(var(--gold) / 0.05); }

/* --- Gradient overlays --- */
.gradient-r-bg { background: linear-gradient(to right, hsl(var(--background) / 0.8), hsl(var(--background) / 0.4), transparent); }
.gradient-t-bg { background: linear-gradient(to top, hsl(var(--background) / 0.7), transparent); }
.gradient-t-bg-90 { background: linear-gradient(to top, hsl(var(--background) / 0.9), hsl(var(--background) / 0.3), transparent); }
.gradient-r-bg-70 { background: linear-gradient(to right, hsl(var(--background) / 0.9), hsl(var(--background) / 0.6), transparent); }

/* =============================== */
/* HEADER                          */
/* =============================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.site-header .logo img { height: 4rem; width: auto; }
.header-nav { display: flex; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground) / 0.7); transition: color 0.2s; }
.header-nav a:hover, .header-nav a.active { color: hsl(var(--primary)); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher {
  display: flex; align-items: center; gap: 0.25rem;
  border-radius: 0.5rem; border: 1px solid hsl(var(--border)); padding: 0.25rem 0.5rem;
}
.lang-switcher a {
  padding: 0.25rem 0.5rem; font-size: 0.75rem; font-weight: 700;
  border-radius: 0.25rem; transition: all 0.2s; color: hsl(var(--muted-foreground));
}
.lang-switcher a:hover { color: hsl(var(--foreground)); }
.lang-switcher a.active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-login {
  border-radius: 0.5rem; border: 1px solid hsl(var(--primary));
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700;
  color: hsl(var(--primary)); transition: all 0.2s;
}
.btn-login:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-register {
  border-radius: 0.5rem; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700;
  color: hsl(var(--primary-foreground)); transition: opacity 0.2s;
}
.btn-register:hover { opacity: 0.9; }
.mobile-menu-btn { display: none; color: hsl(var(--foreground)); }
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background)); padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground) / 0.8); }
.mobile-menu a:hover { color: hsl(var(--primary)); }
.mobile-menu .lang-row { display: flex; gap: 0.5rem; padding-top: 0.75rem; }
.mobile-menu .lang-row a {
  display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
  border-radius: 0.375rem; color: hsl(var(--muted-foreground)); border: 1px solid hsl(var(--border));
}
.mobile-menu .lang-row a.active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }
.mobile-menu .cta-mobile {
  display: block; text-align: center; margin-top: 0.75rem; padding: 0.5rem 1rem;
  border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; color: hsl(var(--primary-foreground));
}
.hidden-toggle { display: none; }

/* =============================== */
/* FOOTER                          */
/* =============================== */
.site-footer { border-top: 1px solid hsl(var(--border)); background: hsl(var(--card)); }
.site-footer .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.site-footer h4 { font-size: 0.875rem; font-weight: 700; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.footer-stack { display: flex; flex-direction: column; gap: 2rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-badge {
  border-radius: 0.375rem; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary));
  padding: 0.375rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  color: hsl(var(--foreground) / 0.8); transition: border-color 0.2s;
}
.footer-badge:hover { border-color: hsl(var(--primary) / 0.5); }
.footer-social {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 0.375rem; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary));
  padding: 0.375rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  color: hsl(var(--foreground) / 0.8); transition: all 0.2s;
}
.footer-social:hover { border-color: hsl(var(--primary) / 0.5); color: hsl(var(--primary)); }
.footer-social svg { width: 14px; height: 14px; }
.footer-social-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-social-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-ext-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-legal { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.footer-legal p { margin-bottom: 0.75rem; }
.footer-legal-italic { font-style: italic; opacity: 0.7; }
.footer-age { font-weight: 700; color: hsl(var(--primary)); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { text-align: center; font-size: 0.75rem; color: hsl(var(--muted-foreground) / 0.5); margin-top: 2rem; }

/* =============================== */
/* LAYOUT                          */
/* =============================== */
.site-main { flex: 1; }
.flex-col-layout { display: flex; flex-direction: column; min-height: 100vh; }
.scroll-mt-20 { scroll-margin-top: 5rem; }

/* --- Sections --- */
.sec { padding: 3.5rem 0; }
.sec-sm { padding: 2.5rem 0; }
.sec-md { padding: 3rem 0; }
.sec-hero { padding: 1.5rem 0 2rem; }
.sec-page { padding: 4rem 0; }
.bg-card-50 { background-color: hsl(var(--card) / 0.5); }

/* --- Text sizes --- */
.text-10 { font-size: 0.625rem; }
.text-11 { font-size: 0.6875rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- Color utilities --- */
.text-foreground { color: hsl(var(--foreground)); }
.text-foreground-70 { color: hsl(var(--foreground) / 0.7); }
.text-foreground-80 { color: hsl(var(--foreground) / 0.8); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-foreground-50 { color: hsl(var(--muted-foreground) / 0.5); }
.text-muted-foreground-60 { color: hsl(var(--muted-foreground) / 0.6); }
.text-muted-foreground-70 { color: hsl(var(--muted-foreground) / 0.7); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-primary-60 { color: hsl(var(--primary) / 0.6); }
.text-primary-70 { color: hsl(var(--primary) / 0.7); }
.text-primary-80 { color: hsl(var(--primary) / 0.8); }
.text-accent { color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-destructive { color: hsl(var(--destructive)); }
.text-pf-70 { color: hsl(var(--primary-foreground) / 0.7); }
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary-60 { background-color: hsl(var(--secondary) / 0.6); }
.bg-secondary-40 { background-color: hsl(var(--secondary) / 0.4); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary-5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary-10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary-90 { background-color: hsl(var(--primary) / 0.9); }
.bg-accent-5 { background-color: hsl(var(--accent) / 0.05); }
.bg-destructive-5 { background-color: hsl(var(--destructive) / 0.05); }
.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary-20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary-30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary-40 { border-color: hsl(var(--primary) / 0.4); }
.border-primary-50 { border-color: hsl(var(--primary) / 0.5); }
.border-accent-20 { border-color: hsl(var(--accent) / 0.2); }
.border-accent-30 { border-color: hsl(var(--accent) / 0.3); }
.border-destructive-20 { border-color: hsl(var(--destructive) / 0.2); }
.border-destructive-30 { border-color: hsl(var(--destructive) / 0.3); }

/* --- Layout utilities --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1-5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-w-200 { min-width: 200px; }
.min-w-300 { min-width: 300px; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* --- Spacing --- */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0-5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-auto { margin-left: auto; }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* --- Border --- */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }

/* --- Border radius --- */
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* --- Overflow & Object --- */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.object-right { object-position: right; }
.aspect-square { aspect-ratio: 1 / 1; }

/* --- Text alignment --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* --- Opacity & Pointer --- */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* --- Transitions --- */
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-all { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.2s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.tr-transform-500 { transition: transform 0.5s; }

/* --- Shadows --- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* --- Animations --- */
@keyframes fade-in-up { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out both; }
.animate-fade-in { animation: fade-in 0.4s ease-out both; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Grid templates --- */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* --- Blockquote --- */
blockquote {
  border-radius: 0.75rem; background: hsl(var(--secondary) / 0.4);
  padding: 1.25rem; font-size: 0.875rem; color: hsl(var(--muted-foreground));
  line-height: 1.625; font-style: italic;
}

/* --- Table styles --- */
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead tr { background: hsl(var(--secondary) / 0.6); }
th {
  padding: 0.75rem 1rem; text-align: left; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: hsl(var(--muted-foreground));
}
th.text-center { text-align: center; }
th.col-primary { color: hsl(var(--primary)); }
td { padding: 0.625rem 1rem; color: hsl(var(--muted-foreground)); }
td.text-center { text-align: center; }
td.highlight { background: hsl(var(--primary) / 0.05); }
tbody tr { border-top: 1px solid hsl(var(--border)); transition: background-color 0.15s; }
tbody tr:hover { background: hsl(var(--secondary) / 0.3); }

/* =============================== */
/* COMPONENT: Scroll to top        */
/* =============================== */
.scroll-top-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  border-radius: 9999px; padding: 0.75rem;
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  transition: all 0.3s; opacity: 0; transform: translateY(1rem); pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn:hover { transform: scale(1.1); }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* =============================== */
/* COMPONENT: TOC                  */
/* =============================== */
.toc-nav ol { list-style: decimal; list-style-position: inside; }
.toc-nav li { margin-bottom: 0.375rem; }
.toc-nav a { font-size: 0.875rem; color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.toc-nav a:hover { color: hsl(var(--primary)); }

/* =============================== */
/* COMPONENT: FAQ                  */
/* =============================== */
.faq-section {
  border-radius: 1rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); padding: 1.5rem 2rem;
}
.faq-label {
  font-size: 0.75rem; font-weight: 700; color: hsl(var(--primary));
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.faq-body { display: flex; flex-direction: column; gap: 1rem; }

/* =============================== */
/* COMPONENT: Changelog            */
/* =============================== */
.changelog-entry {
  position: relative; padding-left: 1.5rem; padding-bottom: 1.25rem;
  border-left: 2px solid hsl(var(--border));
}
.changelog-entry:last-child { border-left: none; padding-bottom: 0; }
.changelog-dot {
  position: absolute; left: -0.375rem; top: 0.25rem;
  width: 0.75rem; height: 0.75rem; border-radius: 9999px;
  background: hsl(var(--border)); transition: background 0.2s;
}
.changelog-entry:hover .changelog-dot { background: hsl(var(--primary)); }
.changelog-date { font-size: 0.75rem; color: hsl(var(--muted-foreground) / 0.6); font-family: monospace; }
.changelog-category {
  font-size: 0.625rem; font-weight: 700; padding: 0.125rem 0.5rem;
  border-radius: 9999px; display: inline-block;
}
.changelog-header { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.cat-review { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.cat-bonus { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.cat-games { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
.cat-app { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.cat-withdrawal { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.cat-security { background: hsl(var(--destructive)); color: hsl(var(--destructive-foreground)); }
.cat-support { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
.cat-cashback { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.cat-limits { background: hsl(var(--destructive)); color: hsl(var(--destructive-foreground)); }

/* =============================== */
/* COMPONENT: Reviews              */
/* =============================== */
.review-card { transition: transform 0.2s, box-shadow 0.2s; }
.review-card:hover { transform: scale(1.02); box-shadow: 0 10px 25px hsl(var(--primary) / 0.05); }
.review-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: hsl(var(--primary-foreground));
}
.review-avatar-lg { width: 3.5rem; height: 3.5rem; font-size: 1.25rem; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.review-user { display: flex; align-items: center; gap: 0.5rem; }
.review-verified { margin-left: 0.375rem; font-size: 0.625rem; font-weight: 600; }
.review-date { font-size: 0.625rem; }
.review-body { margin-top: 0.75rem; }
.review-pros-cons { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 0.375rem; }
.review-feedback { display: flex; align-items: start; gap: 0.375rem; font-size: 0.75rem; }
.review-feedback-icon { margin-top: 0.125rem; flex-shrink: 0; }
.stars-row { display: flex; gap: 2px; }
.star-filled { color: hsl(var(--primary)); }
.star-empty { color: hsl(var(--border)); }
.rating-summary {
  display: flex; align-items: center; gap: 0.5rem;
  border-radius: 0.5rem; background: hsl(var(--secondary) / 0.6);
  border: 1px solid hsl(var(--border)); padding: 0.375rem 0.75rem;
}

/* =============================== */
/* COMPONENT: Author               */
/* =============================== */
.author-block { display: flex; flex-wrap: wrap; align-items: start; gap: 1.25rem; }
.author-content { flex: 1; min-width: 200px; }
.author-name-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.author-role-badge {
  font-size: 0.75rem; border-radius: 9999px; background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary)); padding: 0.125rem 0.5rem; font-weight: 600;
}
.author-socials { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.author-social {
  display: inline-flex; align-items: center; gap: 0.25rem;
  border-radius: 0.375rem; border: 1px solid hsl(var(--border));
  padding: 0.25rem 0.5rem; font-size: 0.6875rem; font-weight: 600;
  color: hsl(var(--muted-foreground)); transition: all 0.2s;
}
.author-social:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary) / 0.5); }
.author-social svg { width: 12px; height: 12px; }

/* =============================== */
/* COMPONENT: Internal Links       */
/* =============================== */
.internal-link-card { transition: all 0.2s; display: block; }
.internal-link-card:hover { transform: scale(1.02); border-color: hsl(var(--primary) / 0.3); box-shadow: 0 10px 25px hsl(var(--primary) / 0.05); }
.internal-link-card:hover .link-title { color: hsl(var(--primary)); }
.internal-link-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.375rem; }
.internal-link-card .arrow-icon { opacity: 0; transition: opacity 0.2s; margin-left: auto; }
.internal-link-card:hover .arrow-icon { opacity: 1; }

/* =============================== */
/* COMPONENT: Quick Facts          */
/* =============================== */
.quick-facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.qf-item { display: flex; align-items: start; gap: 0.75rem; }
.qf-icon { border-radius: 0.5rem; background: hsl(var(--primary) / 0.1); padding: 0.5rem; flex-shrink: 0; }
.qf-note { font-size: 0.625rem; color: hsl(var(--primary) / 0.7); }

/* =============================== */
/* COMPONENT: Hero                 */
/* =============================== */
.hero-title { margin-bottom: 1.25rem; line-height: 1.25; }
.hero-cards { gap: 1rem; margin-bottom: 1.25rem; }
.hero-card-img { height: 14rem; overflow: hidden; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: right; transition: transform 0.5s; }
.hero-label-overlay { bottom: 1rem; left: 1.25rem; }
.hero-promo-label {
  display: inline-block; background: hsl(var(--primary) / 0.9); color: hsl(var(--primary-foreground));
  font-size: 0.625rem; font-weight: 900; letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem; border-radius: 0.375rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary) / 0.8);
  padding: 0.25rem 0.75rem; font-size: 0.6875rem; font-weight: 600; color: hsl(var(--foreground) / 0.8);
}
.hero-safety { font-size: 0.6875rem; display: flex; align-items: center; gap: 0.375rem; }
.hero-badge-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; }
.hero-badge-text {
  font-size: 0.6875rem; font-weight: 700; color: hsl(var(--primary));
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* =============================== */
/* COMPONENT: CTA Buttons          */
/* =============================== */
.cta-btn {
  display: inline-block; padding: 0.75rem 1.75rem; font-weight: 700;
  color: hsl(var(--primary-foreground)); transition: transform 0.2s;
}
.cta-btn:hover { transform: scale(1.02); }
.cta-btn-sm { display: inline-block; margin-top: 0.75rem; padding: 0.625rem 1.5rem; font-size: 0.875rem; font-weight: 700; color: hsl(var(--primary-foreground)); }
.cta-btn-lg {
  display: inline-block; padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 900;
  color: hsl(var(--primary-foreground)); transition: transform 0.2s;
}
.cta-btn-secondary {
  display: inline-block; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 700;
  color: hsl(var(--primary)); transition: background 0.2s;
}
.cta-btn-install {
  display: inline-block; padding: 0.75rem 2rem; font-weight: 700; transition: transform 0.2s;
}
.cta-wrapper { margin-top: 1.75rem; }
.cta-center { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* =============================== */
/* COMPONENT: Bonus Cards          */
/* =============================== */
.bonus-card-img { height: 9rem; overflow: hidden; }
.bonus-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bonus-icon-overlay { top: 0.75rem; left: 0.75rem; }
.bonus-hero-card { border: 1px solid hsl(var(--primary) / 0.2); max-width: 56rem; margin-bottom: 1.5rem; }
.bonus-hero-img { width: 33.333%; }
.bonus-hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.bonus-hero-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bonus-sub-card-img img { width: 100%; height: 8rem; object-fit: cover; }
.bonus-sub-icon { margin-bottom: 0.75rem; display: block; }
.stat-box { text-align: center; }
.stat-box-value { font-size: 1.5rem; }
.stat-box-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-boxes { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.stat-box-item { border-radius: 0.5rem; padding: 0.5rem 1rem; text-align: center; }

/* =============================== */
/* COMPONENT: Game Cards           */
/* =============================== */
.game-card-img { height: 10rem; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.game-count-overlay { bottom: 0.75rem; left: 1rem; }
.game-banner { height: 14rem; margin-bottom: 1.25rem; }
.game-banner a { display: block; width: 100%; height: 100%; }
.game-banner img { width: 100%; height: 100%; object-fit: cover; object-position: right; transition: transform 0.5s; }
.game-banner-label { bottom: 1.25rem; left: 1.5rem; }
.game-thumb-overlay {
  background: linear-gradient(to top, hsl(var(--background) / 0.8), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.game-thumb-name { bottom: 0.5rem; left: 0.5rem; right: 0.5rem; opacity: 0; transition: opacity 0.3s; }
.game-thumb-img { width: 100%; height: 6rem; object-fit: cover; }
.game-thumb-img-sm { width: 2rem; height: 2rem; border-radius: 0.25rem; object-fit: cover; }
.game-thumb-img-h5 { width: 100%; height: 5rem; object-fit: cover; transition: transform 0.2s; }

/* =============================== */
/* COMPONENT: Safety & Review      */
/* =============================== */
.safety-icon-lg { margin: 0 auto 0.5rem; }
.safety-icon-lg svg { width: 40px; height: 40px; }
.pros-header { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.pros-list { display: flex; flex-direction: column; gap: 0.375rem; }
.pros-item { display: flex; align-items: start; gap: 0.5rem; }
.pros-item-icon { margin-top: 0.125rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; }
.feature-icon-wrap { padding: 0.375rem; }
.login-feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.login-feature-icon { flex-shrink: 0; }

/* =============================== */
/* COMPONENT: Extended Content     */
/* =============================== */
.callout-card { border-left: 4px solid hsl(var(--primary) / 0.6); margin-bottom: 2.5rem; }
.callout-inner { display: flex; align-items: start; gap: 1rem; }
.callout-icon { padding: 0.625rem; flex-shrink: 0; margin-top: 0.25rem; }
.key-data-box { display: flex; flex-direction: column; gap: 0.75rem; }
.key-data-row { display: flex; justify-content: space-between; border-bottom: 1px solid hsl(var(--border)); padding-bottom: 0.5rem; }
.key-data-row-last { display: flex; justify-content: space-between; }
.quote-block { border-left: 2px solid hsl(var(--accent) / 0.4); padding-left: 1.25rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.quote-primary { border-left: 4px solid hsl(var(--primary) / 0.4); padding-left: 1.25rem; margin-bottom: 2rem; }
.quote-accent { border-left: 2px solid hsl(var(--accent) / 0.4); padding-left: 1rem; }
.quote-destructive { border-left: 2px solid hsl(var(--destructive) / 0.3); padding-left: 1rem; margin-top: 1rem; }
.quote-primary-sm { border-left: 2px solid hsl(var(--primary) / 0.3); padding-left: 1rem; }
.quote-accent-sm { border-left: 2px solid hsl(var(--accent) / 0.3); padding-left: 1rem; }
.quote-muted-sm { border-left: 2px solid hsl(var(--muted-foreground) / 0.2); padding-left: 1rem; }
.final-score-wrap { display: flex; flex-wrap: wrap; align-items: start; gap: 1.5rem; }
.final-score-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 9999px;
}
.final-content { flex: 1; min-width: 200px; }
.safety-box { margin-bottom: 2.5rem; }
.content-narrow { max-width: 48rem; }

/* =============================== */
/* COMPONENT: Login Page           */
/* =============================== */
.login-hero { gap: 2rem; margin-bottom: 2.5rem; }
.login-panel { display: flex; align-items: center; justify-content: center; }
.login-icon-wrap { margin: 0 auto 0.75rem; }
.step-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.step-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 9999px;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  font-size: 0.75rem; font-weight: 700;
}
.step-arrow { margin-left: 0.25rem; }
.login-cta-card { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.login-cta-content { flex: 1; min-width: 200px; }

/* =============================== */
/* COMPONENT: App Page             */
/* =============================== */
.app-hero { margin-bottom: 2rem; height: 16rem; }
.app-hero img { width: 100%; height: 100%; object-fit: cover; }
.app-hero-overlay { bottom: 1.5rem; left: 1.5rem; }
.app-pwa-badge { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.app-cta-bar { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.load-time-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.875rem; padding: 0.375rem 0; border-bottom: 1px solid hsl(var(--border));
}
.load-time-info { display: flex; align-items: center; gap: 0.5rem; }
.app-quotes { gap: 1rem; margin-bottom: 2rem; }
.app-quote-item { flex: 1; }

/* =============================== */
/* COMPONENT: Provider Section     */
/* =============================== */
.provider-header { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-bottom: 1.25rem; }
.provider-thumb { width: 5rem; height: 5rem; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0; }
.provider-thumb img { width: 100%; height: 100%; object-fit: cover; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }

/* =============================== */
/* COMPONENT: Reviews Header       */
/* =============================== */
.reviews-header { display: flex; flex-wrap: wrap; align-items: end; gap: 1rem; margin-bottom: 1.5rem; }

/* =============================== */
/* COMPONENT: 404 Page             */
/* =============================== */
.page-404 { display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }

/* =============================== */
/* COMPONENT: Author wrapper       */
/* =============================== */
.author-wrapper { max-width: 48rem; padding-top: 2rem; padding-bottom: 2rem; }
.author-bottom { margin-top: 1.5rem; border-top: 1px solid hsl(var(--border)); padding-top: 1.5rem; }
.author-flex { max-width: 56rem; margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: start; gap: 1.5rem; }

/* =============================== */
/* COMPONENT: Bonus slots cards    */
/* =============================== */
.slot-card-img { width: 100%; height: 8rem; object-fit: cover; }

/* =============================== */
/* RESPONSIVE                      */
/* =============================== */
@media (min-width: 768px) {
  .site-header .logo img { height: 5rem; }
  .md-flex { display: flex !important; }
  .md-grid { display: grid !important; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .md-col-span-2 { grid-column: span 2; }
  .md-col-span-3 { grid-column: span 3; }
  .md-text-4xl { font-size: 2.25rem; }
  .quick-facts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .sm-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ========== MOBILE OVERRIDES ========== */
@media (max-width: 767px) {
  .header-nav { display: none !important; }
  .header-actions { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  h1 { font-size: 1.75rem; }
  section, .sec { padding: 2.5rem 0; }
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}
@media (max-width: 639px) {
  .sm-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .scroll-top-btn, .mobile-menu-btn { display: none; }
  body { background: white; color: black; }
}
