/* ============================================
   The Foundry Online - Best Non GamStop Casinos
   Modern Casino Review Site Stylesheet
   ============================================ */

:root {
  --primary: #0f1923;
  --primary-light: #1a2a3a;
  --primary-dark: #0a1219;
  --accent: #f0b90b;
  --accent-hover: #d4a50a;
  --accent-light: #fdf0c4;
  --success: #00c853;
  --danger: #ff5252;
  --info: #2196f3;
  --text: #e8eaed;
  --text-muted: #9aa0a6;
  --text-dark: #1a1a2e;
  --card-bg: #1a2a3a;
  --card-border: #2a3a4a;
  --table-stripe: #152232;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::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(--primary);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---- HEADER / NAVIGATION ---- */
.site-header {
  background: var(--primary-dark);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

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

.site-logo span {
  color: var(--accent);
}

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

.main-nav {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav > li {
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(240, 185, 11, 0.1);
}

/* ---- DROPDOWN MENUS ---- */
.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7em;
  opacity: 0.6;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-dark);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  min-width: 260px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: var(--shadow);
  z-index: 1001;
  padding: 8px 0;
  list-style: none;
}

.has-dropdown:hover > .dropdown,
.has-dropdown.open > .dropdown {
  display: block;
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  border-radius: 0;
}

.dropdown a:hover {
  background: rgba(240,185,11,0.1);
  color: var(--accent);
}

.dropdown::-webkit-scrollbar {
  width: 6px;
}

.dropdown::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

.dropdown::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 3px;
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a3a 50%, #0d2137 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(240,185,11,0.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,185,11,0.15);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(240,185,11,0.3);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ---- SECTION STYLING ---- */
.section {
  padding: 60px 20px;
}

.section-alt {
  background: var(--primary-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
}

/* ---- QUICK PICKS TABLE ---- */
.quick-picks {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quick-picks thead th {
  background: var(--accent);
  color: var(--text-dark);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.quick-picks tbody tr {
  background: var(--card-bg);
  transition: var(--transition);
}

.quick-picks tbody tr:nth-child(even) {
  background: var(--table-stripe);
}

.quick-picks tbody tr:hover {
  background: rgba(240,185,11,0.08);
}

.quick-picks td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.92rem;
  vertical-align: middle;
}

.quick-picks .rank {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  width: 40px;
  text-align: center;
}

.quick-picks .casino-name {
  font-weight: 600;
  color: var(--white);
}

.quick-picks .casino-name img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 8px;
}

.quick-picks .bonus-text {
  color: var(--success);
  font-weight: 600;
}

/* ---- CTA BUTTON ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,185,11,0.3);
  color: var(--text-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
}

/* ---- CASINO REVIEW CARD ---- */
.casino-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.casino-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 30px rgba(240,185,11,0.1);
}

.casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary-light), var(--card-bg));
  border-bottom: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 16px;
}

.casino-card-rank {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rank-number {
  background: var(--accent);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.casino-card-logo {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.casino-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.casino-card-badge {
  background: rgba(0,200,83,0.15);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.casino-card-bonus {
  text-align: right;
}

.casino-card-bonus .bonus-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.casino-card-bonus .bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.casino-card-body {
  padding: 28px;
}

.casino-card-body p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.75;
}

.casino-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(240,185,11,0.05);
  border-radius: 8px;
  border: 1px solid rgba(240,185,11,0.1);
}

.feature-icon {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-size: 0.9rem;
}

.feature-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.casino-card-footer {
  padding: 16px 28px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.casino-card-footer .terms {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 60%;
}

/* ---- PROS / CONS ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.pros-list, .cons-list {
  list-style: none;
  padding: 0;
}

.pros-list li, .cons-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros-list li::before {
  content: '+';
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cons-list li::before {
  content: '-';
  color: var(--danger);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- INFO GRID ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FAQ SECTION ---- */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---- AUTHOR / EEAT BOX ---- */
.author-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.author-info .author-title {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.author-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--primary-dark);
  padding: 20px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item strong {
  color: var(--white);
}

/* ---- CONTENT BLOCKS ---- */
.content-block {
  max-width: var(--max-width);
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--card-border);
}

.content-block h2 span {
  color: var(--accent);
}

.content-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 30px 0 12px;
}

.content-block h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 10px;
}

.content-block p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text);
}

.content-block ul, .content-block ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-block li {
  margin-bottom: 8px;
  line-height: 1.65;
}

/* ---- COMPARISON TABLE ---- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th {
  background: var(--accent);
  color: var(--text-dark);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-border);
  background: var(--card-bg);
  font-size: 0.9rem;
}

.comparison-table tr:nth-child(even) td {
  background: var(--table-stripe);
}

.comparison-table tr:hover td {
  background: rgba(240,185,11,0.06);
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: rgba(240,185,11,0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p {
  margin-bottom: 8px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* ---- TABLE OF CONTENTS ---- */
.toc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  margin: 30px 0;
}

.toc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.toc ol {
  padding-left: 20px;
  counter-reset: toc;
}

.toc li {
  padding: 5px 0;
  font-size: 0.9rem;
}

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

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

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--card-border);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  padding: 4px 0;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-badges span {
  padding: 6px 14px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
}

/* ---- DISCLOSURE ---- */
.disclosure {
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.breadcrumbs span {
  margin: 0 6px;
}

/* ---- PAYMENT ICONS ---- */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.payment-tag {
  background: var(--primary);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--text);
}

/* ---- RATING STARS ---- */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star {
  color: var(--accent);
  font-size: 1rem;
}

.star.empty {
  color: var(--card-border);
}

.rating-text {
  margin-left: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ---- STEP GUIDE ---- */
.steps {
  counter-reset: step;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--card-border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  background: var(--accent);
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px;
    border-bottom: 2px solid var(--accent);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    min-width: 100%;
    max-height: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .has-dropdown > a::after {
    content: ' \25BE';
  }

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

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

  .casino-card-header {
    flex-direction: column;
    text-align: center;
  }

  .casino-card-rank {
    flex-direction: column;
  }

  .casino-card-bonus {
    text-align: center;
  }

  .hero {
    padding: 50px 16px 40px;
  }

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

  .section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .content-block h2 {
    font-size: 1.5rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .casino-features {
    grid-template-columns: 1fr;
  }

  .quick-picks {
    display: block;
  }

  .quick-picks thead {
    display: none;
  }

  .quick-picks tbody tr {
    display: block;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
  }

  .quick-picks td {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--card-border);
  }

  .quick-picks td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .casino-card-name {
    font-size: 1.2rem;
  }

  .content-block h2 {
    font-size: 1.3rem;
  }
}

/* ---- PRINT STYLES ---- */
@media print {
  .site-header, .site-footer, .btn, .nav-toggle {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .casino-card {
    break-inside: avoid;
  }
}
