/* ================================================================
   mrbetonline.pl — Design System
   Mr. Bet Poland Affiliate
   Theme: Dark Navy + Gold Premium
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy-900: #060f20;
  --navy-800: #0d1b35;
  --navy-700: #132444;
  --navy-600: #1a2f56;
  --navy-500: #234078;
  --navy-400: #2d548a;
  --gold-500: #c5a028;
  --gold-400: #d4af37;
  --gold-300: #e8c84b;
  --gold-200: #f5e08a;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.12);
  --white-10: rgba(255,255,255,0.07);
  --success: #22c55e;
  --danger: #ef4444;
  --text-primary: #e8edf5;
  --text-secondary: rgba(232,237,245,0.7);
  --text-muted: rgba(232,237,245,0.45);
  --border: rgba(212,175,55,0.2);
  --border-light: rgba(255,255,255,0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-deep: 0 16px 64px rgba(0,0,0,0.6);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lora', serif;
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-300); }
ul { list-style: none; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--gold-400); color: var(--navy-900); padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,15,32,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo-link { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.logo-text span { color: var(--gold-400); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: var(--white-90); padding: 0.5rem 0.8rem; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap; letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-400); background: var(--white-10);
}

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-login {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--gold-400); border: 1.5px solid var(--gold-500);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-sm);
  transition: all var(--transition); letter-spacing: 0.03em;
}
.btn-login:hover { background: var(--gold-500); color: var(--navy-900); }

.btn-register {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900); padding: 0.55rem 1.4rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold); transition: all var(--transition);
  letter-spacing: 0.03em; white-space: nowrap;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.4);
  color: var(--navy-900);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(6,15,32,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white-90); letter-spacing: 0.04em; transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-400); }
.mobile-nav .mobile-reg {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900); padding: 0.85rem 2.5rem;
  border-radius: var(--radius-sm); font-size: 1.1rem;
  font-weight: 900; margin-top: 1rem;
}

/* ================================================================
   PAGE HERO BANNER
================================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-400); border: 1px solid var(--gold-500);
  padding: 0.3rem 0.85rem; border-radius: 30px;
  margin-bottom: 1.25rem;
  background: rgba(212,175,55,0.1);
}
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.hero-content h1 .accent { color: var(--gold-400); }
.hero-content .hero-desc {
  font-size: 1.05rem; color: var(--white-60);
  max-width: 560px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900); padding: 0.9rem 2rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold); transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-hero-primary:hover { transform: translateY(-2px); color: var(--navy-900);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); border: 1.5px solid var(--border-light);
  padding: 0.9rem 2rem; border-radius: var(--radius-md);
  transition: all var(--transition);
}
.btn-hero-secondary:hover { border-color: var(--gold-400); color: var(--gold-400); background: var(--white-10); }

/* Rating stars in hero */
.hero-rating {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--white-60);
}
.stars { color: var(--gold-400); font-size: 1rem; }

/* ================================================================
   CONTAINER & SECTIONS
================================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 4rem 0; }
section.alt-bg { background: var(--navy-800); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-400);  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2;
}
.section-title span { color: var(--gold-400); }
.section-sub {
  font-size: 1rem; color: var(--text-secondary);
  margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ================================================================
   CARDS
================================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--navy-700);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { transform: translateY(-3px); border-color: var(--border); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.card p { font-size: 0.92rem; color: var(--text-secondary); }

/* ================================================================
   TABLES
================================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table th {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  color: var(--gold-400);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 1.25rem; text-align: left;
  border-bottom: 1.5px solid var(--border);
}
.data-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--white-10); }
.data-table tr:hover td { background: var(--white-20); }
.badge {
  display: inline-block; padding: 0.25rem 0.65rem;
  border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.04em;
}
.badge-green { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.badge-gold { background: rgba(212,175,55,0.15); color: var(--gold-300); border: 1px solid rgba(212,175,55,0.3); }
.badge-blue { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }

/* ================================================================
   RATING BAR (for review)
================================================================ */
.rating-list { display: flex; flex-direction: column; gap: 1rem; }
.rating-item { }
.rating-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.rating-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); }
.rating-score { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--gold-400); }
.rating-bar { height: 6px; background: var(--navy-600); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); transition: width 1s ease; }

/* ================================================================
   CHART / DIAGRAM SVG wrapper
================================================================ */
.chart-wrap {
  background: var(--navy-700); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem;
  overflow: hidden; position: relative;
}
.chart-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem;
}

/* Bar chart (CSS-only) */
.bar-chart { display: flex; gap: 1rem; align-items: flex-end; height: 180px; padding: 0 0.5rem; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.bar-fill {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  transition: height 1s ease; min-height: 8px;
  position: relative;
}
.bar-fill.alt { background: linear-gradient(180deg, #60a5fa, #3b82f6); }
.bar-val {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  color: var(--gold-400);
}
.bar-label { font-size: 0.7rem; color: var(--text-secondary); text-align: center; }

/* Donut chart */
.donut-wrap { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 0.75rem; }
.donut-item { display: flex; align-items: center; gap: 0.5rem; }
.donut-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.donut-text { font-size: 0.82rem; color: var(--text-secondary); }
.donut-text strong { color: var(--white); font-family: var(--font-display); }

/* ================================================================
   FAQ ACCORDION
================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--navy-700); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem; cursor: pointer;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--white);
  user-select: none;
}
.faq-question .faq-icon {
  font-size: 1.2rem; color: var(--gold-400);
  transition: transform var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ================================================================
   PROS/CONS
================================================================ */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-box, .cons-box {
  background: var(--navy-700); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--border-light);
}
.pros-box h3 { color: var(--success); font-family: var(--font-display); margin-bottom: 1rem; }
.cons-box h3 { color: var(--danger); font-family: var(--font-display); margin-bottom: 1rem; }
.pros-list li, .cons-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.6rem;
}
.pros-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: var(--danger); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   SEO ARTICLE
================================================================ */
.seo-article { max-width: 900px; margin: 0 auto; }
.seo-article h2 {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800; color: var(--white);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.seo-article h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--gold-400); margin: 1.75rem 0 0.75rem;
}
.seo-article p {
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: 1.15rem; line-height: 1.8;
}
.seo-article .text-link {
  color: var(--gold-400); border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: all var(--transition);
}
.seo-article .text-link:hover { border-bottom-color: var(--gold-400); }
.seo-article ul { margin: 0.75rem 0 1.25rem 1.5rem; list-style: disc; }
.seo-article ul li { color: var(--text-secondary); margin-bottom: 0.4rem; font-size: 0.97rem; }
.seo-article ol { margin: 0.75rem 0 1.25rem 1.5rem; list-style: decimal; }
.seo-article ol li { color: var(--text-secondary); margin-bottom: 0.4rem; font-size: 0.97rem; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.25); border-left: 3px solid var(--gold-400);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--text-primary); margin: 0; font-size: 0.97rem; }
.highlight-box p strong { color: var(--gold-400); }

/* ================================================================
   CASINO SCORE WIDGET
================================================================ */
.score-widget {
  background: var(--navy-700); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.score-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: conic-gradient(var(--gold-400) 0% calc(var(--score) * 1%), var(--navy-600) calc(var(--score) * 1%) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.score-circle::before {
  content: ''; position: absolute; width: 82px; height: 82px;
  border-radius: 50%; background: var(--navy-700);
}
.score-inner { position: relative; z-index: 1; text-align: center; }
.score-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--gold-400); }
.score-max { font-family: var(--font-display); font-size: 0.7rem; color: var(--text-muted); }
.score-details { flex: 1; }
.score-details h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.score-details p { font-size: 0.92rem; color: var(--text-secondary); }

/* ================================================================
   BONUS CARDS
================================================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.bonus-card {
  background: var(--navy-700); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.bonus-card-header {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.bonus-card-header .bonus-emoji { font-size: 1.75rem; }
.bonus-card-header h3 {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  color: var(--white);
}
.bonus-card-body { padding: 1.5rem; }
.bonus-amount {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
  color: var(--gold-400); line-height: 1;
  margin-bottom: 0.25rem;
}
.bonus-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.bonus-feature {
  display: flex; gap: 0.4rem; align-items: center;
  font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.3rem;
}
.bonus-feature::before { content: '✓'; color: var(--gold-400); font-weight: 700; }
.bonus-btn {
  display: block; text-align: center; width: 100%; margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900); font-family: var(--font-display); font-weight: 800;
  padding: 0.75rem; border-radius: var(--radius-sm); font-size: 0.88rem;
  letter-spacing: 0.04em; transition: all var(--transition);
}
.bonus-btn:hover { transform: translateY(-1px); color: var(--navy-900); box-shadow: var(--shadow-gold); }

/* ================================================================
   PAYMENT METHODS
================================================================ */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 1rem; }
.payment-item {
  background: var(--navy-700); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.25rem 1rem;
  text-align: center; transition: all var(--transition);
}
.payment-item:hover { border-color: var(--border); box-shadow: var(--shadow-gold); }
.payment-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-name { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.payment-detail { font-size: 0.7rem; color: var(--text-muted); }

/* ================================================================
   STEPS
================================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step-item {
  text-align: center; padding: 1.5rem;
  background: var(--navy-700); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); position: relative;
}
.step-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: rgba(212,175,55,0.15); line-height: 1; margin-bottom: 0.75rem;
}
.step-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* ================================================================
   GAMES GRID
================================================================ */
.games-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); background: var(--navy-700);
  border: 1px solid var(--border-light); padding: 0.45rem 1rem;
  border-radius: 30px; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500);
}
.games-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; }
.game-thumb {
  background: var(--navy-700); border-radius: var(--radius-md);
  aspect-ratio: 3/2; overflow: hidden; position: relative;
  border: 1px solid var(--border-light); transition: all var(--transition);
}
.game-thumb:hover { transform: scale(1.02); border-color: var(--border); }
.game-thumb-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem;
}
.game-emoji { font-size: 2rem; }
.game-name { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; color: var(--white); text-align: center; }
.game-provider { font-size: 0.65rem; color: var(--text-muted); }

/* ================================================================
   AUTHOR BOX
================================================================ */
.author-card {
  display: flex; gap: 2rem; align-items: flex-start;
  background: var(--navy-700); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem; flex-wrap: wrap;
}
.author-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--gold-500);
}
.author-info h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.25rem;
}
.author-title { font-size: 0.85rem; color: var(--gold-400); margin-bottom: 0.75rem; }
.author-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.author-stat { text-align: center; }
.author-stat .num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold-400);
}
.author-stat .lbl { font-size: 0.72rem; color: var(--text-muted); }

/* ================================================================
   DISCLAIMER & RESPONSIBLE GAMBLING
================================================================ */
.rg-banner {
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(239,68,68,0.04));
  border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  margin: 2rem 0;
}
.rg-icon { font-size: 1.5rem; flex-shrink: 0; }
.rg-text { font-size: 0.85rem; color: var(--text-secondary); }
.rg-text strong { color: var(--danger); }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand .logo-img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 0.5rem; transition: color var(--transition);
  font-family: var(--font-display);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; flex-wrap: wrap;
}
.footer-disclaimer { font-size: 0.8rem; color: var(--text-muted); max-width: 640px; line-height: 1.6; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.badge-rg {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  border: 1px solid var(--border-light); color: var(--text-muted);
  padding: 0.3rem 0.7rem; border-radius: 4px; letter-spacing: 0.05em;
}
.age-badge {
  background: var(--danger); color: var(--white);
  font-family: var(--font-display); font-weight: 900; font-size: 0.75rem;
  padding: 0.35rem 0.6rem; border-radius: 4px;
}

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb {
  background: var(--navy-800); border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}
.breadcrumb nav {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.78rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.4; }
.breadcrumb .current { color: var(--white-90); }

/* ================================================================
   NOTIFICATION BANNER (top)
================================================================ */
.top-banner {
  background: linear-gradient(90deg, var(--navy-600), var(--navy-500));
  text-align: center; padding: 0.6rem 1.5rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--white);
  display: flex; justify-content: center; align-items: center; gap: 1rem;
}
.top-banner .tb-logo { font-size: 1rem; }
.top-banner a { color: var(--gold-400); font-weight: 700; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-login { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .page-hero { min-height: 300px; }
  .hero-content h1 { font-size: 1.8rem; }

  .bar-chart { height: 130px; }
  .donut-wrap { flex-direction: column; }
  .score-widget { flex-direction: column; align-items: flex-start; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-stats { justify-content: center; }
  .games-grid-4 { grid-template-columns: repeat(2, 1fr); }

  section { padding: 2.5rem 0; }
}

@media (max-width: 480px) {
  .header-inner { height: 60px; }
  .logo-text { display: none; }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
}
