@font-face {
  font-family: "Urbanist";
  src: url(./fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}


/* Base Styles */
:root {
  --primary-color: #073A11;
  --accent-color: #F2CA65;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --black: #000000;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist" !important;
}

body {
  font-family: 'Urbanist', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: #f7f7f7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 450px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.modal-content {
  padding: 40px;
}

.modal-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.registration-form .form-group {
  margin-bottom: 20px;
}

.registration-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
}

.registration-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.registration-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--accent-color);
  color: var(--black);
  font-weight: 600;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #d2ac4b;
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo-link {
  display: block;
}

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

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

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

.login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.register-btn {
  background-color: var(--accent-color);
  color: var(--black);
}

.register-btn:hover {
  background-color: #d2ac4b;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  height: 100%;
}

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

/* Upcoming Races Section */
.upcoming-races-section {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.race-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.race-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  /* overflow: hidden; */
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.race-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.race-card-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.race-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
}

.race-icon svg {
  width: 24px;
  height: 24px;
}

.race-info {
  flex: 1;
}

.race-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.race-details {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
}

.race-location, .race-country {
  position: relative;
}

.race-location::after {
  content: '•';
  margin-left: 10px;
}

.race-countdown {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: auto;
  font-weight: 500;
}

.race-content {
  padding: 20px;
}

.race-runner {
  position: relative;
  margin-bottom: 15px;
}

.runner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.runner-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.runner-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.runner-barrier {
  color: var(--dark-gray);
  font-size: 14px;
}

.runner-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.runner-icon {
  width: 24px;
  height: 24px;
}

.runner-info {
  flex: 1;
  font-size: 14px;
  color: #666;
}

.jockey-info, .trainer-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-label {
  font-weight: 600;
}

.bet-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.bet-button {
  flex: 1;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 8px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bet-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.bet-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.bet-type {
  font-size: 12px;
  color: #666;
}

.bet-odds {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.favorite-tag {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

.race-divider {
  height: 1px;
  background-color: #eee;
  margin: 15px 0;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-disclaimer {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-link:hover {
  color: #d2ac4b;
}

.footer-copyright {
  margin-bottom: 30px;
  opacity: 0.8;
}

.regulatory-card {
  background-color: var(--white);
  color: var(--black);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.regulatory-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.regulatory-text {
  line-height: 1.6;
}

.regulatory-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.regulatory-link:hover {
  color: #b01820;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.partner-logo {
  height: 36px;
  opacity: 0.8;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.payment-logo {
  height: 36px;
  opacity: 0.8;
  transition: var(--transition);
}

.payment-logo:hover {
  opacity: 1;
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1000;
  padding: 70px 30px 30px;
  transition: var(--transition);
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.mobile-nav-link {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 26px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.nav-overlay.active {
  display: block;
}

/* Media Queries */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: block;
  }
  
  .hero-section {
    height: 400px;
  }
  
  .race-cards-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .race-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-section {
    height: 500px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .auth-buttons {
    display: none;
  }
  
  .mobile-nav .auth-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
  }
  
  .mobile-nav .auth-btn {
    width: 100%;
    text-align: center;
  }
}


/* Hero Overlay Styles */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  color: var(--white);
  max-width: 600px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  background-color: var(--accent-color);
  color: var(--black);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
}

.hero-cta:hover {
  background-color: #d2ac4b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Betting Slip Styles */
.betting-slip {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 300px;
  background-color: var(--white);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 90;
  transform: translateY(calc(100% - 50px));
  transition: transform 0.3s ease;
}

.betting-slip.active {
  transform: translateY(0);
}

.slip-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.slip-title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}

.slip-count {
  background-color: var(--accent-color);
  color: var(--black);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}

.slip-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.toggle-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  display: block;
  transform: rotate(45deg);
  transition: var(--transition);
}

.betting-slip.active .toggle-icon {
  transform: rotate(225deg);
}

.slip-content {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.empty-slip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  color: #999;
}

.empty-slip-icon {
  margin-bottom: 15px;
  color: #ccc;
}

.empty-slip-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.empty-slip-hint {
  font-size: 14px;
}

/* Race Promotion Styles */
.race-promotion {
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  border: 1px dashed var(--accent-color);
}

.promotion-badge {
  position: absolute;
  top: -10px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

.promotion-title {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 10px;
  color: var(--black);
}

.promotion-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.promotion-btn {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: underline;
  background: none;
  padding: 0;
  transition: var(--transition);
}

.promotion-btn:hover {
  color: #b01820;
}

/* Odds Movement Indicators */
.odds-movement {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin-left: 5px;
}

.odds-movement.increasing {
  border-bottom: 6px solid #4CAF50;
}

.odds-movement.decreasing {
  border-top: 6px solid #F44336;
}

/* Featured Race Styles */
.featured-race {
  border: 2px solid var(--accent-color);
  position: relative;
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* View More Container */
.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.view-more-btn {
  background-color: #f5f5f5;
  color: var(--dark-gray);
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.view-more-btn:hover {
  background-color: #eee;
  color: var(--black);
}

.section-footer {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: #b01820;
  transform: translateY(-2px);
}

/* Popular Sports Section */
.popular-sports-section {
  padding: 50px 0;
  background-color: var(--white);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sport-card {
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.sport-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  color: var(--primary-color);
  background-color: rgba(231, 31, 39, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.sport-card:hover .sport-icon {
  background-color: rgba(231, 31, 39, 0.2);
}

.sport-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
}

.sport-events {
  font-size: 14px;
  color: #666;
}

/* Live Stream Icon */
.live-stream-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* Greyhound Icon Styles */
.greyhound-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.greyhound-icon img {
  width: 20px;
  height: 20px;
}

/* Runner Icon Small */
.runner-icon-small {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Groups */
.logo-group {
  margin-bottom: 30px;
}

.logo-group-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Media Queries Additions */
@media (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-text {
    font-size: 20px;
  }
  
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 48px;
  }
  
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .betting-slip {
    width: 350px;
  }
}


/* Age Verification Modal */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000; /* Higher than any other modal */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verification-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-verification-container {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease forwards;
  border: 2px solid var(--accent-color);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-verification-content {
  padding: 30px;
  text-align: center;
}

.age-logo {
  margin-bottom: 20px;
}

.age-logo svg {
  height: 40px;
  width: auto;
}

.age-verification-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.age-warning-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.age-verification-text {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.age-verification-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.exit-site-btn {
  flex: 1;
  padding: 14px;
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.exit-site-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.confirm-age-btn {
  flex: 2;
  padding: 14px;
  background-color: var(--accent-color);
  border: none;
  color: var(--black);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

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

.responsible-gambling {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.responsible-gambling-icon {
  color: var(--white);
  flex-shrink: 0;
  margin-top: 5px;
}

.responsible-gambling-text {
  color: var(--white);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

.gambling-help-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: var(--transition);
}

.gambling-help-link:hover {
  color: #d2ac4b;
}

/* Add responsive adjustments */
@media (max-width: 480px) {
  .age-verification-actions {
    flex-direction: column;
  }
  
  .age-verification-title {
    font-size: 20px;
  }
  
  .age-verification-text {
    font-size: 14px;
  }
  
  .responsible-gambling-text {
    font-size: 11px;
  }
}


/* Policies Pages Styles */
:root {
  --primary-color: #073A11;
  --accent-color: #F2CA65;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-border: #EEEEEE;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  padding: 40px 0;
  color: var(--white);
  margin-bottom: 40px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-link:hover {
  color: #d2ac4b;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: var(--white);
  opacity: 0.8;
}

/* Policy Content */
.policy-content {
  padding-bottom: 60px;
}

.policy-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 30px;
  font-style: italic;
}

.policy-intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-border);
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-list, .problem-signs-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-list li, .problem-signs-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  padding-left: 5px;
}

.policy-numbered-list {
  margin-left: 25px;
  margin-bottom: 20px;
  counter-reset: item;
  list-style-type: decimal;
}

.policy-numbered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  margin-left: 0;
}

.contact-list li {
  padding-left: 0;
  margin-bottom: 15px;
}

.policy-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--light-border);
  text-align: center;
  font-style: italic;
}

/* Active Nav Link */
.nav-link.active {
  color: var(--accent-color);
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--accent-color);
}

/* Responsible Gambling Specific Styles */
.tool-card {
  display: flex;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.tool-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.tool-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.tool-content {
  flex: 1;
}

.tool-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.tool-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.tool-link:hover {
  color: #b01820;
  text-decoration: underline;
}

.betstop-banner {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-top: 20px;
}

.betstop-logo {
  margin-right: 20px;
  flex-shrink: 0;
}

.external-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.external-link:hover {
  color: #b01820;
  text-decoration: underline;
}

.problem-signs-list {
  background-color: #ffeeee;
  border-left: 4px solid var(--primary-color);
  padding: 20px 20px 10px 30px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.assessment-list {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.assessment-item {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.assessment-item:last-child {
  border-bottom: none;
}

.assessment-question {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}

.assessment-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
}

.assessment-result {
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
  color: var(--primary-color);
}

.support-card {
  display: flex;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.support-logo {
  margin-right: 30px;
  flex-shrink: 0;
}

.support-contact p {
  margin-bottom: 5px;
}

.responsible-gambling-message {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: var(--border-radius);
  padding: 20px;
}

.responsible-gambling-icon {
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.responsible-gambling-message p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 30px 0;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .policy-container {
    padding: 20px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .tool-card, .support-card, .betstop-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tool-icon, .support-logo, .betstop-logo {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .responsible-gambling-message {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible-gambling-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 24px;
  }
  
  .policy-intro {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 20px;
  }
}

.logo-container {
  font-weight: bold;
  font-size: 30px;
  display: flex;
}

.pulse-text {
  color: white;
}
.bet-text {
  color: #F2CA65;

}
@media (max-width: 600px) {
  .logo-container {
    font-size: 50px;
  }
}
.form-text{
  text-align: center;
  margin-top: 10px;
  color: #ffffff;
}
.form-text button{
  color: #ffffff;
  text-decoration: underline;
}
.full-slip-btns{
  display: flex;
  justify-content: space-between;
}
#clearBtn{
    background-color:#f9f9f9;
    color: var(--black);
    padding: 12px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
}
#betBtn{
  background-color: var(--accent-color);
  color: var(--black);
  padding: 12px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
}
.active-bet {
  background-color: var(--accent-color) !important;
  border: none;
}


.hero-slider {
  position: relative;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  z-index: 1;
}

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