/* ============================================
   PlaynGoZA — Main Stylesheet (Light Theme)
   South Africa | ZAR | English
   ============================================ */

:root {
  --primary: #0077b6;
  --primary-dark: #005a8e;
  --primary-light: #e8f4fd;
  --accent: #f77f00;
  --accent-light: #fff3e0;
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface-2: #f0f4f8;
  --surface-3: #e8edf2;
  --text: #1a1a2e;
  --text-2: #4a5568;
  --muted: #718096;
  --border: #d1dbe8;
  --border-light: #e8edf2;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --font-main: 'Barlow', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --green: #27ae60;
  --green-light: #eafaf1;
  --red: #e74c3c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Typography */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p { margin-bottom: 1.2em; color: var(--text-2); }
p:last-child { margin-bottom: 0; }
ul, ol { margin-bottom: 1.2em; padding-left: 1.5em; color: var(--text-2); }
li { margin-bottom: 0.4em; }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 3rem 0; }
section.section-alt { background: var(--surface-2); }

/* ============ HEADER ============ */
#site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--border-light);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text); text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo span span { color: var(--primary); }
.logo-emoji { font-size: 1.5rem; }
.logo-badge {
  background: var(--primary); color: white;
  font-size: 0.65rem; padding: 2px 7px; border-radius: 20px;
  font-family: var(--font-main); font-weight: 600; letter-spacing: 0.03em;
}
.nav-main { display: flex; align-items: center; gap: 0.25rem; }
.nav-main a {
  color: var(--text-2); font-weight: 600; font-size: 0.9rem;
  padding: 0.4rem 0.7rem; border-radius: var(--radius);
  text-decoration: none; transition: all var(--transition);
}
.nav-main a:hover { color: var(--primary); background: var(--primary-light); text-decoration: none; }
.nav-main a.active { color: var(--primary); }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 0.45rem 1rem !important; }
.nav-cta:hover { background: #e07000 !important; text-decoration: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  padding: 0.65rem 1.4rem; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; font-size: 0.95rem; letter-spacing: 0.02em;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #e07000; border-color: #e07000; color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #00b4d8 100%);
  color: white; padding: 4rem 0 3rem;
}
.hero h1 { color: white; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.hero .hero-desc { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin-bottom: 1.5rem; }
.hero .hero-desc p { color: rgba(255,255,255,0.9); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-ctas .btn-outline { border-color: rgba(255,255,255,0.8); color: white; }
.hero-ctas .btn-outline:hover { background: white; color: var(--primary); }
.section-label {
  display: inline-block; background: rgba(255,255,255,0.2); color: white;
  font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px;
  margin-bottom: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============ STATS BAR ============ */
.stats-bar { background: var(--surface); border-bottom: 1px solid var(--border-light); padding: 1rem 0; }
.stats-bar-inner { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.15rem; }

/* ============ SECTION HEADERS ============ */
.section-header { margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--text-2); max-width: 600px; }

/* ============ GAME CARDS ============ */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.game-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.game-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary); }
.game-card-thumb {
  position: relative; aspect-ratio: 16/10; background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card-badges { position: absolute; top: 0.5rem; left: 0.5rem; display: flex; gap: 0.3rem; flex-wrap: wrap; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: 12px; }
.badge-rtp { background: var(--primary); color: white; }
.badge-vol { background: var(--surface); color: var(--text-2); border: 1px solid var(--border); }
.badge-bonus { background: var(--accent); color: white; }
.badge-new { background: var(--green); color: white; }
.game-card-body { padding: 0.9rem; }
.game-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--text); }
.game-card-meta { display: flex; gap: 0.75rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.game-meta-item { font-size: 0.75rem; color: var(--muted); }
.game-card-actions { display: flex; gap: 0.5rem; }
.game-card-actions .btn { flex: 1; text-align: center; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-tab {
  padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-2); transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ============ CASINO CARDS ============ */
.casino-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem;
  display: grid; grid-template-columns: 80px 1fr auto; gap: 1.25rem; align-items: start;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.casino-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.casino-logo {
  width: 80px; height: 80px; background: var(--surface-2);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; font-weight: 700;
  font-family: var(--font-display); color: var(--primary); border: 1px solid var(--border);
  text-align: center; font-size: 0.75rem; line-height: 1.3;
}
.casino-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.casino-bonus { color: var(--accent); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.casino-features { list-style: none; padding: 0; margin: 0; }
.casino-features li { font-size: 0.82rem; color: var(--text-2); margin-bottom: 0.2rem; padding-left: 1.1rem; position: relative; }
.casino-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.casino-rating { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--primary); margin-top: 0.25rem; }
.casino-actions { display: flex; flex-direction: column; gap: 0.5rem; min-width: 130px; }

/* ============ RTP TABLE ============ */
.rtp-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.rtp-table thead tr { background: var(--primary); }
.rtp-table thead th { color: white; padding: 0.85rem 1rem; text-align: left; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; }
.rtp-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
.rtp-table tbody tr:hover { background: var(--primary-light); }
.rtp-table tbody tr:last-child { border-bottom: none; }
.rtp-table td { padding: 0.75rem 1rem; font-size: 0.88rem; color: var(--text-2); }
.rtp-table td:first-child { font-weight: 600; color: var(--text); }
.rtp-value { font-weight: 700; color: var(--primary); }
.vol-high { color: var(--red); font-weight: 600; }
.vol-medium { color: var(--accent); font-weight: 600; }
.vol-low { color: var(--green); font-weight: 600; }

/* ============ CATEGORY CARDS ============ */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.category-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem 1rem; text-align: center; text-decoration: none;
  transition: all var(--transition); box-shadow: var(--shadow); display: block;
}
.category-card:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow-md); }
.category-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.category-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.3rem; }
.category-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.category-card:hover .category-title { color: var(--primary); }

/* ============ BREADCRUMBS ============ */
.breadcrumb-nav { background: var(--surface-2); border-bottom: 1px solid var(--border-light); padding: 0.6rem 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; list-style: none; padding: 0; margin: 0; font-size: 0.82rem; flex-wrap: wrap; }
.breadcrumb-item { display: flex; align-items: center; gap: 0.4rem; color: var(--muted); }
.breadcrumb-item::before { content: "/"; }
.breadcrumb-item:first-child::before { display: none; }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: var(--text-2); font-weight: 600; }

/* ============ SLOT HERO ============ */
.slot-hero { background: var(--surface); border-bottom: 1px solid var(--border-light); padding: 2rem 0; }
.slot-hero-inner { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
.slot-image-box {
  background: var(--surface-2); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; border: 1px solid var(--border);
  overflow: hidden;
}
.slot-image-box img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.slot-hero-meta { }
.slot-category-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px;
  margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.slot-hero h1 { margin-bottom: 0.75rem; }
.slot-desc { color: var(--text-2); margin-bottom: 1rem; }
.slot-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* SA Tip box */
.sa-tip {
  background: var(--accent-light); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 0.75rem 1rem;
  margin: 1rem 0; font-size: 0.88rem; color: var(--text-2);
}
.sa-tip strong { color: var(--text); }

/* ============ QUICK STATS TABLE ============ */
.quick-stats { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.quick-stats-header { background: var(--primary); color: white; padding: 0.7rem 1rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.quick-stats-row { display: flex; border-bottom: 1px solid var(--border-light); }
.quick-stats-row:last-child { border-bottom: none; }
.quick-stats-row:nth-child(even) { background: var(--surface-2); }
.qs-label { flex: 0 0 45%; padding: 0.6rem 1rem; font-size: 0.83rem; color: var(--muted); font-weight: 600; border-right: 1px solid var(--border-light); }
.qs-value { flex: 1; padding: 0.6rem 1rem; font-size: 0.88rem; color: var(--text); font-weight: 600; }

/* ============ FAQ ============ */
.faq-section { margin: 2rem 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.6rem; overflow: hidden; background: var(--surface); }
.faq-question {
  width: 100%; text-align: left; padding: 1rem 1.25rem; background: none;
  border: none; cursor: pointer; font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text); display: flex; justify-content: space-between;
  align-items: center; gap: 0.5rem;
}
.faq-question::after { content: "+"; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; font-weight: 400; }
.faq-question.active::after { content: "−"; }
.faq-question:hover { background: var(--primary-light); }
.faq-answer { padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--text-2); display: none; }
.faq-answer.open { display: block; }
.faq-section-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); margin: 1.5rem 0 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }

/* ============ INFO BOXES ============ */
.info-box { padding: 1rem 1.25rem; border-radius: var(--radius); margin: 1.5rem 0; }
.info-box-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; }
.info-box-rg { background: #fff3e0; border-left: 4px solid var(--accent); }
.info-box-rg .info-box-title { color: #b45309; }
.info-box-tip { background: var(--primary-light); border-left: 4px solid var(--primary); }
.info-box-tip .info-box-title { color: var(--primary); }

/* ============ QUICK LINKS SIDEBAR ============ */
.quick-links { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.quick-links h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--text); }
.quick-links a { display: block; padding: 0.4rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--border-light); color: var(--primary); }
.quick-links a:hover { color: var(--primary-dark); }
.quick-links a:last-child { border-bottom: none; }

/* ============ CONTENT LAYOUT ============ */
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.content-main { min-width: 0; }
.content-sidebar { }
.content-sidebar .quick-stats, .content-sidebar .quick-links, .content-sidebar .casino-mini { margin-bottom: 1.25rem; }

/* ============ RELATED SLOTS ============ */
.related-slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary); }
.blog-card-body { padding: 1.25rem; }
.blog-tag { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); text-decoration: none; }
.blog-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.blog-date { font-size: 0.78rem; color: var(--muted); }

/* ============ COMPARISON TABLE ============ */
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th { background: var(--primary); color: white; padding: 0.75rem 1rem; font-family: var(--font-display); text-align: left; }
.comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border-light); font-size: 0.88rem; color: var(--text-2); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--surface-2); }

/* ============ FOOTER ============ */
#site-footer { background: #1a1a2e; color: #cbd5e0; padding: 3rem 0 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo { color: white; margin-bottom: 0.75rem; }
.footer-brand .logo span span { color: #00b4d8; }
.footer-brand .logo:hover { text-decoration: none; }
.footer-brand p { font-size: 0.83rem; color: #a0aec0; margin-bottom: 0.75rem; }
.footer-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.75rem; }
.footer-badge { background: rgba(255,255,255,0.1); color: #e2e8f0; font-size: 0.72rem; padding: 3px 9px; border-radius: 20px; font-weight: 600; }
.footer-col h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; font-family: var(--font-display); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: #a0aec0; font-size: 0.83rem; text-decoration: none; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.78rem; color: #718096; }
.footer-rg { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.79rem; color: #a0aec0; line-height: 1.6; }
.footer-rg strong { color: #e2e8f0; }
.footer-rg a { color: #63b3ed; }

/* ============ HERO — PAGE VARIANTS ============ */
.page-hero { background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%); color: white; padding: 2.5rem 0; }
.page-hero h1 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1rem; max-width: 600px; }
.page-hero .section-label { background: rgba(255,255,255,0.2); color: white; }

/* ============ MISC ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.view-all-link { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.view-all-link::after { content: "→"; }
.view-all-link:hover { text-decoration: none; color: var(--primary-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .related-slots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-main { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); padding: 1rem; border-bottom: 2px solid var(--border-light); box-shadow: var(--shadow-md); gap: 0.25rem; }
  .nav-main.open { display: flex; }
  .nav-toggle { display: flex; }
  #site-header { position: relative; }
  .casino-card { grid-template-columns: 60px 1fr; }
  .casino-actions { grid-column: 1 / -1; flex-direction: row; }
  .slot-hero-inner { grid-template-columns: 1fr; }
  .slot-image-box { max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero-ctas { flex-direction: column; }
  .stats-bar-inner { gap: 1rem; }
  .related-slots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .casino-card { grid-template-columns: 1fr; }
  .casino-logo { display: none; }
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
}
