/* ========================================
   Best Non UK Casino - Main Stylesheet
   Modern, responsive, SEO-optimized design
   ======================================== */

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

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #d63851;
  --gold: #f4c430;
  --gold-dark: #d4a810;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 5px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

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

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

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; margin-top: 2.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; margin-top: 2rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 900px; }

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--gold); }

.main-nav { display: flex; gap: 0; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  padding: 22px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.05);
}

/* Dropdown Navigation */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a .arrow { font-size: 0.6rem; transition: transform var(--transition); }
.nav-item:hover > a .arrow { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  min-width: 240px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: none;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--gold); border-bottom-color: rgba(255,255,255,0.06); }
.nav-dropdown .dropdown-heading {
  padding: 10px 20px 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  pointer-events: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 0.5rem; }
.hero h1 span { color: var(--gold); }
.hero .subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero .update-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs span { color: var(--text-light); margin: 0 8px; }

/* Content */
.content-section { padding: 3rem 0; }
.content-section:nth-child(even) { background: var(--white); }

/* Casino Cards */
.casino-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.casino-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.casino-card.featured::before {
  content: 'Editor\'s Choice';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold);
  color: var(--primary);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.casino-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 50px;
}

.casino-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.casino-info { flex: 1; }
.casino-info h3 { margin: 0 0 4px; font-size: 1.3rem; }
.casino-info .casino-tagline { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-score {
  background: var(--green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.1rem;
}
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.casino-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1rem 0;
}

.casino-detail h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.casino-detail .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.casino-detail .value.highlight { color: var(--accent); }

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.feature-tag {
  background: #f0f4f8;
  color: var(--text);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.feature-tag.pro { background: #e8f5e9; color: #2e7d32; }
.feature-tag.con { background: #fce4ec; color: #c62828; }

.casino-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.casino-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}
.pros li::before { content: '\2713 '; color: var(--green); font-weight: 700; }
.cons li::before { content: '\2717 '; color: var(--accent); font-weight: 700; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.pros li, .cons li { margin-bottom: 4px; padding-left: 0; }
.pros h5, .cons h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.pros h5 { color: var(--green-dark); }
.cons h5 { color: var(--accent); }

/* CTA Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,69,96,0.4);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(244,196,48,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,196,48,0.4);
  color: var(--primary);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}
.comparison-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table tbody tr:hover { background: #f8f9ff; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .rank-cell { font-weight: 800; color: var(--gold-dark); text-align: center; }
.comparison-table .bonus-cell { font-weight: 600; color: var(--accent); }
.comparison-table .cta-cell { text-align: center; }

/* Info Boxes */
.info-box {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.info-box.warning {
  background: #fff3e0;
  border-left-color: #f57c00;
}
.info-box.success {
  background: #e8f5e9;
  border-left-color: var(--green);
}
.info-box.danger {
  background: #fce4ec;
  border-left-color: var(--accent);
}
.info-box h4 { margin-bottom: 0.5rem; }
.info-box p:last-child { margin-bottom: 0; }

/* Author Box / EEAT */
.author-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 2rem 0;
  border: 1px solid var(--border);
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.author-info h4 { margin-bottom: 2px; }
.author-title { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.5rem; }
.author-bio { font-size: 0.9rem; color: var(--text); }

/* FAQ Section */
.faq-section { margin: 2rem 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: #f8f9ff; }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

/* Sidebar / TOC */
.content-with-toc {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.toc {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.toc h4 { margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 0; }
.toc a {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.85rem;
  border-radius: 6px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.toc a:hover, .toc a.active {
  background: #f0f4f8;
  color: var(--accent);
  border-left-color: var(--accent);
}

/* Payment Methods Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
}
.payment-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.payment-card h5 { margin-bottom: 4px; }
.payment-card .speed { font-size: 0.8rem; color: var(--green); font-weight: 600; }

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-badge .icon {
  width: 48px;
  height: 48px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Stats Counter */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -1.5rem auto 2rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  overflow: hidden;
}
.stat-item {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer-col p { font-size: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.footer-bottom p { margin-bottom: 0.5rem; }

.responsible-gambling-footer {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.85rem;
}
.responsible-gambling-footer strong { color: var(--gold); }

/* Review Page Specific */
.review-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  color: var(--white);
  padding: 3rem 0;
}
.review-hero h1 { color: var(--white); }
.review-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.review-meta-item { font-size: 0.9rem; opacity: 0.9; }
.review-meta-item strong { color: var(--gold); }

.review-quick-facts {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin: -2rem 0 2rem;
  position: relative;
  z-index: 10;
}
.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.quick-fact { text-align: center; padding: 0.75rem; }
.quick-fact .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.quick-fact .val { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* Score Meter */
.score-meter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.score-bar {
  width: 120px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Guide Pages */
.guide-content { font-size: 1.05rem; }
.guide-content h2 { padding-top: 1rem; border-top: 2px solid var(--border); }
.guide-content h3 { color: var(--primary-light); }

/* Category Badge */
.category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.cat-badge {
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
  background: #fff8e1;
  border: 1px solid #ffecb3;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: #5d4037;
  margin: 1.5rem 0;
}
.affiliate-disclosure strong { color: #e65100; }

/* Responsive */
@media (max-width: 1024px) {
  .content-with-toc { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 2.5rem 0 2rem; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.open a { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .main-nav.open .nav-dropdown { display: none; position: static; box-shadow: none; min-width: 100%; }
  .main-nav.open .nav-item.open .nav-dropdown { display: block; background: rgba(0,0,0,0.2); }
  .main-nav.open .nav-dropdown a { padding-left: 36px; font-size: 0.85rem; }
  .mobile-toggle { display: block; }

  .casino-body { grid-template-columns: 1fr; gap: 1rem; }
  .casino-header { flex-direction: column; text-align: center; padding-left: 0; }
  .casino-rank { position: static; border-radius: var(--radius-sm); margin-bottom: 0.5rem; }
  .casino-footer { flex-direction: column; }
  .casino-pros-cons { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }

  .footer-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* Schema / Structured Data Helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Methodology Section */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.methodology-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.methodology-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.methodology-card .step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.methodology-card h4 { margin-bottom: 0.5rem; }
.methodology-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* Print Styles */
@media print {
  .site-header, .site-footer, .btn, .toc, .mobile-toggle { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .casino-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
