/* ==========================================================================
   T3 BK8 Premium Dark Gaming Theme — bk8mypro Style
   GitHub-dark aesthetic with green CTAs
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #252b35;
  --accent: #58a6ff;
  --accent-hover: #79b8ff;
  --cta-primary: #238636;
  --cta-primary-hover: #2ea043;
  --cta-secondary: #f0883e;
  --cta-secondary-hover: #f5a060;
  --text-primary: #ffffff;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;
  --border-color: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  --container-max: 1200px;
  --header-height: 72px;
  --border-radius: 8px;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-sm);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--cta-primary);
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-xs);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  gap: var(--space-xs);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-primary);
  color: var(--text-primary);
  border-color: var(--cta-primary);
}

.btn-primary:hover {
  background: var(--cta-primary-hover);
  border-color: var(--cta-primary-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(35, 134, 54, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cta-secondary);
  border-color: var(--cta-secondary);
}

.btn-secondary:hover {
  background: var(--cta-secondary);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 136, 62, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header .nav {
  display: none;
  align-items: center;
  gap: 0;
}

.header .nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-xs) 0.75rem;
  border-radius: var(--border-radius);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.header .nav a:hover,
.header .nav a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.header-actions .btn-login {
  color: var(--text-secondary);
  background: transparent;
  border-color: var(--border-color);
}

.header-actions .btn-login:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1050;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: calc(var(--header-height) + var(--space-sm)) var(--space-md) var(--space-lg);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  padding: 0.875rem 0;
  font-size: var(--text-lg);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--text-primary);
  padding-left: var(--space-xs);
}

.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.mobile-nav .mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Partnership Banner ---------- */
.partnership-banner {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
  text-align: center;
}

.partnership-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.partnership-banner p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.partnership-banner img {
  height: 32px;
  width: auto;
  display: inline-block;
}

.partnership-banner strong {
  color: var(--text-primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(88, 166, 255, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(35, 134, 54, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-md) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  text-align: center;
}

.stat-item {
  padding: var(--space-xs) 0;
}

.stat-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-title {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Why Choose Section (Value Props) ---------- */
.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.value-prop-card {
  text-align: center;
  padding: var(--space-lg);
}

.value-prop-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.value-prop-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.value-prop-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-md);
}

.testimonial-stars {
  color: var(--cta-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- Game Categories ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.category-card {
  text-align: center;
  padding: var(--space-lg);
  text-decoration: none;
  display: block;
  color: inherit;
}

.category-card:hover {
  color: inherit;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.category-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.category-card .btn {
  margin-top: var(--space-sm);
}

/* ---------- Long-Form Content ---------- */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-area {
  max-width: 800px;
  margin: 0 auto;
}

.content-area h2 {
  font-size: var(--text-3xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-color);
}

.content-area h2:first-child {
  margin-top: 0;
}

.content-area h3 {
  font-size: var(--text-2xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.content-area p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.content-area ul,
.content-area ol {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.content-area ul {
  list-style: disc;
}

.content-area ol {
  list-style: decimal;
}

.content-area li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-area strong {
  color: var(--text-primary);
}

.content-area a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(88, 166, 255, 0.3);
  text-underline-offset: 2px;
}

.content-area a:hover {
  text-decoration-color: var(--accent);
}

/* ---------- Licensing & Compliance ---------- */
.licensing-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.licensing-section .section-title {
  font-size: var(--text-2xl);
}

.license-info {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.license-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.license-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.license-logos img:hover {
  opacity: 1;
}

/* ---------- Badges Strip (Trust/Payments) ---------- */
.badges-strip {
  padding: var(--space-lg) 0;
  text-align: center;
}

.badges-strip-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.badges-row img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.badges-row img:hover {
  opacity: 1;
}

.badges-row + .badges-strip-title {
  margin-top: var(--space-lg);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: var(--space-sm) 0;
  padding-left: 8px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
}

.breadcrumb-list a {
  color: var(--text-muted);
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text-secondary);
}

/* ---------- Tables ---------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

thead {
  background: var(--bg-card);
}

th {
  color: var(--text-primary);
  font-weight: 600;
  text-align: left;
  padding: 0.875rem var(--space-sm);
  white-space: nowrap;
  border-bottom: 2px solid var(--border-color);
}

td {
  padding: 0.75rem var(--space-sm);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- FAQ / Accordion ---------- */
.faq-section {
  padding: var(--space-2xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-xs);
  transition: border-color 0.2s ease;
}

details[open] {
  border-color: rgba(88, 166, 255, 0.2);
}

summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-base);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: color 0.2s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: '\2212';
  color: var(--accent);
}

summary:hover {
  color: var(--accent);
}

details .faq-answer {
  padding: 0 var(--space-md) var(--space-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Provider List ---------- */
.provider-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.provider-card {
  padding: var(--space-md);
}

.provider-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
  color: var(--accent);
}

.provider-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Tips Section ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: tip;
}

.tip-card {
  padding: var(--space-md);
  position: relative;
  padding-left: calc(var(--space-md) + 3rem);
}

.tip-card::before {
  counter-increment: tip;
  content: counter(tip);
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  width: 2rem;
  height: 2rem;
  background: var(--cta-primary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.tip-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.tip-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* ---------- Explainer Section ---------- */
.explainer-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.explainer-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
}

.explainer-section h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

/* ---------- Bonuses Section ---------- */
.bonuses-section {
  background: linear-gradient(135deg, rgba(35, 134, 54, 0.08) 0%, rgba(88, 166, 255, 0.05) 100%);
  border: 1px solid rgba(35, 134, 54, 0.2);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  text-align: center;
  margin: var(--space-lg) 0;
}

.bonuses-section h2 {
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
}

/* ---------- Mobile Section ---------- */
.mobile-section {
  padding: var(--space-2xl) 0;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.mobile-feature-card {
  padding: var(--space-md);
  text-align: center;
}

.mobile-feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.mobile-feature-card p {
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Responsible Gaming ---------- */
.responsible-gaming {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.responsible-gaming p {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 640px;
  margin: 0 auto var(--space-sm);
}

.responsible-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.responsible-badges img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-payments,
.footer-certs,
.footer-security {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.footer-payments .badges-strip-title,
.footer-certs .badges-strip-title,
.footer-security .badges-strip-title {
  font-size: 0.75rem;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Tablet (768px+) ---------- */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: var(--text-3xl); }

  .header .nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav,
  .mobile-nav-overlay {
    display: none;
  }

  .hero {
    padding: 5rem 0;
    min-height: 480px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Desktop (1024px+) ---------- */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero {
    padding: 6rem 0;
    min-height: 520px;
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .header .nav a {
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ---------- Print ---------- */
@media print {
  .header,
  .footer,
  .mobile-nav,
  .mobile-nav-overlay,
  .hero-actions,
  .btn {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }

  .content-area p,
  .content-area li {
    color: #333;
  }
}

/* ── Site-specific visual variation (bk8hub) ──────────────── */
/* Generated by generate-site.sh from sites.json css_overrides */
:root {
    --site-accent-hue-shift: 20deg;
    --site-border-radius: 9px;
    --site-card-shadow-opacity: 0.09;
    --site-cta-hue-shift: 15deg;
}

/* Apply accent hue shift to gold/accent colours */
.btn-primary,
.cta-button,
.hero .btn {
}

/* Apply border radius variation */
.card,
.feature-card,
.game-card,
.provider-card,
.faq-item,
details {
    border-radius: var(--site-border-radius);
}

/* Apply card shadow variation */
.card,
.feature-card,
.game-card,
.provider-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, var(--site-card-shadow-opacity));
}

/* Apply accent hue shift to accent-coloured elements */
.accent,
.highlight,
h2::after,
.section-title::after {
}
