/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #2c1810;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.age-popup.hidden {
  display: none;
}

.age-popup-content {
  background: #2c1810;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.age-popup-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.age-popup-content h2 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 24px;
}

.age-popup-content p {
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 16px;
}

.age-popup-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.age-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn.confirm {
  background: #d4af37;
  color: white;
}

.age-btn.confirm:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.age-btn.deny {
  background: #f44336;
  color: white;
}

.age-btn.deny:hover {
  background: #da190b;
  transform: translateY(-2px);
}

/* Header */
.header {
  background: #2c1810;
  padding: 15px 0;
  border-bottom: 2px solid #d4af37;
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-icon {
  font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background: #2c1810;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.mobile-nav-link:hover {
  background: #3d2417;
  color: #d4af37;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(61, 36, 23, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Sportsbooks Section */
.sportsbooks {
  padding: 80px 0;
  background: #f5f5f5;
}

.sportsbook-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #e0e0e0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-rank {
  background: #333333;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.stars {
  color: #ffd700;
  font-size: 18px;
}

.card-logo {
  text-align: center;
  margin: 30px 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder {
  background: #f0f0f0;
  border: 2px dashed #cccccc;
  padding: 20px;
  border-radius: 8px;
  color: #666666;
  font-size: 14px;
  font-weight: bold;
}

.card-title {
  text-align: center;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-offer {
  text-align: center;
  margin: 20px 0;
  color: #333333;
}

.card-offer h4 {
  font-size: 16px;
  margin: 5px 0;
}

.offer-detail {
  color: #666666;
  font-weight: normal;
}

.card-states {
  margin: 20px 0;
  text-align: center;
}

.states-label {
  display: block;
  color: #666666;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.state-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.state-badge {
  background: #d4af37;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.state-more {
  background: #666666;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.card-ratings {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  gap: 20px;
}

.rating-item {
  flex: 1;
  text-align: center;
}

.rating-label {
  display: block;
  color: #666666;
  font-size: 11px;
  margin-bottom: 5px;
}

.rating-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.rating-icon {
  font-size: 14px;
}

.rating-score {
  color: #d4af37;
  font-weight: bold;
  font-size: 16px;
}

.rating-max {
  color: #666666;
  font-size: 14px;
}

.claim-btn {
  width: 100%;
  background: #d4af37;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0 10px 0;
  transition: all 0.3s ease;
}

.claim-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.card-link {
  display: block;
  text-align: center;
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #c2185b;
}

.terms {
  text-align: center;
  margin-top: 15px;
}

.terms-toggle {
  background: none;
  border: none;
  color: #666666;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.terms-toggle:hover {
  color: #333333;
}

/* As Seen On Section */
.as-seen-on {
  background: #2c1810;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

/* Footer */
.footer {
  background: #2c1810;
  padding: 60px 0 20px 0;
}

.footer-content {
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-info {
  color: #cccccc;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 16px;
  margin: 30px 0 15px 0;
}

.footer-section h3:first-child {
  margin-top: 0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section a {
  color: #d4af37;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 40px 0 20px 0;
  justify-content: space-between;
  align-items: center;
}

.footer-badges img {
  height: 50px;
  width: auto;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  color: #666666;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  
  .mobile-menu-toggle {
      display: flex;
  }
  
  .mobile-menu.active {
      display: block;
  }
  
  .hero-title {
      font-size: 32px;
      padding: 0 20px;
  }
  
  .hero-subtitle {
      font-size: 16px;
      padding: 0 20px;
  }
  
  .sportsbook-card {
      margin: 0 20px;
  }
  
  .card-ratings {
      flex-direction: column;
      gap: 15px;
  }
  
  .media-logos {
      gap: 30px;
  }
  
  .media-logos img {
      height: 30px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
  }
  
  .footer-badges {
      flex-wrap: wrap;
      gap: 20px;
  }
  
  .age-popup-content {
      padding: 30px 20px;
  }
  
  .age-popup-buttons {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 24px;
  }
  
  .hero-subtitle {
      font-size: 14px;
  }
  
  .sportsbook-card {
      padding: 20px;
      margin: 0 10px;
  }
  
  .state-badges {
      gap: 5px;
  }
  
  .state-badge, .state-more {
      padding: 3px 6px;
      font-size: 11px;
  }
}






/* Pages Specific Styles */

/* Breadcrumb Navigation */
.breadcrumb {
  background: #f8f9fa;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #0088cc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #005580;
}

.breadcrumb .separator {
  color: #666666;
  font-size: 14px;
}

.breadcrumb .current {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
}

/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, #2c1810 0%, #3d2417 100%);
  padding: 60px 0;
  color: #ffffff;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.update-label {
  color: #cccccc;
}

.update-date {
  color: #4CAF50;
  font-weight: bold;
}

/* Main Content Layout */
.main-content {
  padding: 60px 0;
  background: #ffffff;
}

.content-layout {
  gap: 40px;
  align-items: start;
}

.content-primary {
  color: #333333;
}

/* Content Sections */
.content-section {
  margin-bottom: 50px;
}

.section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #2c1810;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #d4af37;
  position: relative;
}

.section-heading:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #d4af37;
}

.content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
}

.content-text p {
  margin-bottom: 18px;
}

.content-text ul, .content-text ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-text li {
  margin-bottom: 8px;
}

.content-text a {
  color: #0088cc;
  text-decoration: none;
  border-bottom: 1px dotted #0088cc;
  transition: all 0.3s ease;
}

.content-text a:hover {
  color: #005580;
  border-bottom-style: solid;
}

/* Highlight Section */
.highlight-section {
  margin-bottom: 40px;
}

.highlight-box {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.highlight-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.highlight-content p {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
}

/* Table of Contents */
.toc-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #4CAF50;
}

.table-of-contents {
  margin-top: 20px;
}

.toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 12px;
}

.toc-list li:before {
  content: counter(toc-counter);
  background: #d4af37;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
}

.toc-list a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.toc-list a:hover {
  color: #d4af37;
}

/* Data Tables */
.cookie-table {
  margin: 30px 0;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.data-table th {
  background: #2c1810;
  color: #ffffff;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
}

.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.data-table tr:nth-child(even) {
  background: #f8f9fa;
}

.data-table tr:hover {
  background: #e8f5e8;
}

/* Browser Instructions */
.browser-instructions {
  margin: 30px 0;
}

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

.browser-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.browser-item:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.browser-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.browser-item h4 {
  color: #1a2332;
  margin-bottom: 8px;
  font-size: 16px;
}

.browser-item p {
  color: #666666;
  font-size: 14px;
  margin: 0;
}

/* Sidebar Styles */
.content-sidebar {
  position: relative;
}

.sidebar-widget {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sticky-widget {
  position: sticky;
  top: 20px;
}

.widget-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c1810;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
}

.widget-content {
  color: #444444;
}

/* Help Links */
.help-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.help-link:hover {
  border-color: #4CAF50;
  transform: translateY(-2px);
}

.help-link.emergency {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  border-color: #f44336;
}

.help-link.emergency:hover {
  border-color: #d32f2f;
}

.help-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.help-text {
  font-weight: bold;
}

/* Related Links */
.related-links, .quick-nav, .cookie-categories {
  list-style: none;
  padding: 0;
}

.related-links li, .quick-nav li, .cookie-categories li {
  margin-bottom: 10px;
}

.related-links a, .quick-nav a, .cookie-categories a {
  display: block;
  padding: 8px 12px;
  color: #333333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.related-links a:hover, .quick-nav a:hover, .cookie-categories a:hover {
  background: #f5f0e0;
  color: #d4af37;
  border-left-color: #d4af37;
  transform: translateX(5px);
}

/* Cookie Controls */
.cookie-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.cookie-control-btn.accept {
  background: #d4af37;
  color: #ffffff;
}

.cookie-control-btn.accept:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.cookie-control-btn.reject {
  background: #f44336;
  color: #ffffff;
}

.cookie-control-btn.reject:hover {
  background: #d32f2f;
  transform: translateY(-2px);
}

.cookie-control-btn.manage {
  background: #2196F3;
  color: #ffffff;
}

.cookie-control-btn.manage:hover {
  background: #1976D2;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

/* Responsive Design for Pages */
@media (max-width: 1024px) {
  .content-layout {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .content-sidebar {
      order: -1;
  }
  
  .sticky-widget {
      position: static;
  }
}

@media (max-width: 768px) {
  .page-title {
      font-size: 32px;
  }
  
  .page-subtitle {
      font-size: 16px;
  }
  
  .section-heading {
      font-size: 24px;
  }
  
  .highlight-box {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .browser-grid {
      grid-template-columns: 1fr;
  }
  
  .toc-section {
      padding: 20px;
  }
  
  .sidebar-widget {
      padding: 20px;
  }
  
  .cookie-controls {
      gap: 8px;
  }
  
  .cookie-control-btn {
      font-size: 13px;
      padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .page-hero {
      padding: 40px 0;
  }
  
  .page-title {
      font-size: 26px;
  }
  
  .main-content {
      padding: 40px 0;
  }
  
  .content-section {
      margin-bottom: 35px;
  }
  
  .section-heading {
      font-size: 22px;
  }
  
  .highlight-box {
      padding: 20px;
  }
  
  .data-table {
      font-size: 12px;
  }
  
  .data-table th, .data-table td {
      padding: 8px 10px;
  }
}