/* ==========================================================================
   LearnSportsBetting.com - Global Styles
   ========================================================================== */

/* Custom Properties */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #f0fdf4;
  --green-text: #166534;
  --dark: #1a1a1a;
  --gray-900: #333;
  --gray-700: #525252;
  --gray-600: #666;
  --gray-400: #999;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gray-50: #f9fafb;
  --white: #fff;
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo { font-size: 22px; font-weight: 800; }
.logo span { color: var(--green); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a { font-size: 15px; font-weight: 500; color: var(--gray-700); }
.nav > a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--green-dark); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Promo Banner
   ========================================================================== */
.promo-banner {
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
}
.promo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.promo-text { display: flex; align-items: center; gap: 16px; }
.promo-badge {
  background: var(--green);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.promo-text p { font-size: 15px; }
.promo-text strong { color: var(--white); }
.promo-btn {
  background: var(--white);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #f8fdf8 0%, var(--green-light) 100%);
  padding: 64px 24px;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; }
.hero-image {
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border: 2px solid #d4d4d4; color: var(--gray-700); background: transparent; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--gray-100); }

/* ==========================================================================
   Main Content Container
   ========================================================================== */
.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-header h2 { font-size: 24px; font-weight: 700; }
.section-header .view-all {
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}

/* ==========================================================================
   Filter Tabs
   ========================================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  border: none;
}
.filter-tab:hover { background: var(--gray-200); }
.filter-tab.active { background: var(--dark); color: var(--white); }

/* ==========================================================================
   Guide Cards
   ========================================================================== */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.guide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
  display: block;
}
.guide-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.guide-card-image {
  height: 180px;
  background: var(--gray-100);
  overflow: hidden;
}
.guide-card-image img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-content { padding: 20px; }
.guide-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--green-light);
  color: var(--green-text);
}
.guide-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.guide-card p { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; }
.guide-card .read-link { font-size: 14px; color: var(--green); font-weight: 600; }

/* ==========================================================================
   Tool Cards
   ========================================================================== */
.tools-section { margin-bottom: 48px; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
  display: block;
}
.tool-card:hover { border-color: var(--green); background: var(--green-light); }
.tool-card .tool-icon { font-size: 28px; margin-bottom: 12px; }
.tool-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.tool-card p { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.5; }
.tool-card .use-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.tool-card:hover .use-btn { background: var(--green); color: var(--white); }

/* ==========================================================================
   Sportsbook Cards
   ========================================================================== */
.sportsbooks-section {
  background: var(--gray-50);
  padding: 48px 24px;
  margin-bottom: 48px;
}
.sportsbooks-inner { max-width: var(--max-width); margin: 0 auto; }
.sportsbooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sportsbook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.sportsbook-card:hover { border-color: var(--green); }
.sportsbook-card .logo-placeholder {
  width: 80px;
  height: 50px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-600);
}
.sportsbook-card .name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sportsbook-card .rating { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; }
.sportsbook-card .bonus {
  background: var(--green-light);
  color: var(--green-text);
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.sportsbook-card .cta {
  display: block;
  background: var(--green);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.sportsbook-card .cta:hover { background: var(--green-dark); }
.sportsbook-card .review-link { font-size: 13px; color: var(--green); }

/* ==========================================================================
   Resources Grid
   ========================================================================== */
.resources-section { margin-bottom: 48px; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.resource-item {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.resource-item:hover { background: var(--gray-200); }
.resource-item .icon { font-size: 28px; margin-bottom: 10px; }
.resource-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.resource-item .count { font-size: 12px; color: var(--gray-600); }

/* ==========================================================================
   Map / CTA Section
   ========================================================================== */
.map-section {
  background: var(--dark);
  padding: 64px 24px;
  margin-bottom: 48px;
}
.map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.map-content { color: var(--white); }
.map-content h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.map-content p { opacity: 0.8; margin-bottom: 24px; line-height: 1.6; }
.map-placeholder {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}
.newsletter h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.newsletter p { opacity: 0.9; margin-bottom: 28px; font-size: 16px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
}
.newsletter-form button {
  padding: 16px 32px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #333; }
.newsletter-success {
  display: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 0; }
.footer-brand p { opacity: 0.7; font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer-col a { display: block; opacity: 0.8; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { opacity: 1; color: #22c55e; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}
.responsible {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 24px;
  text-align: center;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 14px;
  color: var(--gray-600);
}
.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .separator { margin: 0 8px; color: var(--gray-400); }

/* ==========================================================================
   Page Hero (for inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #f8fdf8 0%, var(--green-light) 100%);
  padding: 48px 24px;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--gray-700); line-height: 1.6; max-width: 700px; }

/* ==========================================================================
   Tool Page Styles
   ========================================================================== */
.tool-page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
}
.tool-iframe-container {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--white);
}
.tool-iframe-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}
.tool-info { margin-bottom: 48px; }
.tool-info h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.tool-info p { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 12px; }
.tool-info ol, .tool-info ul { padding-left: 24px; margin-bottom: 16px; }
.tool-info li { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 8px; }

.related-tools { margin-bottom: 48px; }
.related-tools h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.related-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ==========================================================================
   Hub Page Styles (Tools Hub, Guides Hub)
   ========================================================================== */
.hub-category { margin-bottom: 40px; }
.hub-category h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

/* ==========================================================================
   Guide Article Styles
   ========================================================================== */
.article-header { margin-bottom: 32px; }
.article-header .category-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green-text);
  margin-bottom: 16px;
}
.article-header h1 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.article-meta { font-size: 14px; color: var(--gray-600); display: flex; gap: 16px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 24px; font-weight: 700; margin: 32px 0 16px; }
.article-body h3 { font-size: 20px; font-weight: 600; margin: 24px 0 12px; }
.article-body p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  background: var(--green-light);
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body .info-box {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}
.article-body .info-box h4 { font-size: 16px; margin-bottom: 8px; }
.article-body .info-box p { margin: 0; font-size: 15px; }

/* ==========================================================================
   Sportsbook Review Page
   ========================================================================== */
.review-hero {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 48px 24px;
  color: var(--white);
}
.review-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.review-hero .rating { font-size: 20px; }
.review-hero .bonus-highlight {
  background: rgba(255,255,255,0.2);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.review-hero .bonus-highlight .amount { font-size: 28px; font-weight: 800; }
.review-hero .bonus-highlight .label { font-size: 14px; opacity: 0.9; }

.review-content { max-width: 800px; }
.review-content h2 { font-size: 24px; font-weight: 700; margin: 32px 0 16px; }
.review-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.review-content ul { padding-left: 24px; margin-bottom: 16px; }
.review-content li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.pros, .cons {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.pros { background: var(--green-light); }
.cons { background: #fef2f2; }
.pros h3 { color: var(--green-text); margin-bottom: 12px; }
.cons h3 { color: #991b1b; margin-bottom: 12px; }
.pros li { color: var(--green-text); }
.cons li { color: #991b1b; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.comparison-table th, .comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table th {
  background: var(--gray-100);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}
.comparison-table td { font-size: 15px; }
.comparison-table tr:hover td { background: var(--green-light); }

/* ==========================================================================
   State Pages
   ========================================================================== */
.state-hero {
  background: linear-gradient(135deg, #166534 0%, #15803d 100%);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  color: var(--white);
  margin-bottom: 32px;
}
.state-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.status-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}
.status-badge.legal { background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5); }
.status-badge.illegal { background: rgba(239,83,80,0.3); border: 2px solid rgba(239,83,80,0.5); }
.status-badge.pending { background: rgba(255,193,7,0.3); border: 2px solid rgba(255,193,7,0.5); }

.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.fact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: center;
}
.fact-card .icon { font-size: 28px; margin-bottom: 10px; }
.fact-card .label { font-size: 13px; color: var(--gray-600); margin-bottom: 4px; }
.fact-card .value { font-size: 18px; font-weight: 700; color: var(--green); }
.fact-card .value.yes { color: #4caf50; }
.fact-card .value.no { color: #ef5350; }

.content-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.content-card h2 {
  font-size: 22px;
  color: var(--green-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-light);
}
.content-card p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.content-card ul, .content-card ol { padding-left: 24px; margin-bottom: 16px; }
.content-card li { font-size: 15px; line-height: 1.7; margin-bottom: 8px; }

/* State Hub Grid */
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.state-card:hover { border-color: var(--green); background: var(--green-light); }
.state-card .state-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.state-card .state-status.legal { background: var(--green-light); color: var(--green-text); }
.state-card .state-status.illegal { background: #fef2f2; color: #991b1b; }
.state-card .state-status.pending { background: #fffbeb; color: #92400e; }

/* State stats bar */
.state-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.state-stat {
  text-align: center;
}
.state-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
}
.state-stat .label {
  font-size: 14px;
  color: var(--gray-600);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.legal-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .sportsbooks-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(3, 1fr); }
  .map-inner { grid-template-columns: 1fr; }
  .map-placeholder { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .related-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .review-hero-inner { flex-direction: column; gap: 24px; text-align: center; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .mobile-menu-btn { display: flex; }
  .hero-content h1 { font-size: 32px; }
  .hero { padding: 40px 24px; }
  .promo-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-btns { flex-direction: column; }
  .guides-grid { grid-template-columns: 1fr; }
  .sportsbooks-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 28px; }
  .related-tools-grid { grid-template-columns: 1fr; }
  .state-stats { flex-wrap: wrap; gap: 16px; }
  .state-hero { padding: 32px 20px; }
  .state-hero h1 { font-size: 28px; }
  .content-card { padding: 20px; }
}
