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

:root {
  --bg-color: #0d0b1f;
  --primary-color: #7f00ff;
  --accent-color: #00f0ff;
  --text-color: #ffffff;
  --text-muted: #a19dbb;
  --card-bg: #1a1333;
  --card-bg-hover: #261944;
  --border-color: #3f2a7f;
  --danger-color: #ff2c74;
  --success-color: #00ffae;
  --warning-color: #ffce00;
  --info-color: #00b0ff;
  --odds-hover: #4b009e;
  --live-color: #ff006f;
  --shadow: 0 0 16px rgba(127, 0, 255, 0.3);
  --border-radius: 10px;
  --border-radius-sm: 6px;
  --transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 76px;
  --sidebar-width: 320px;
  --policy-spacing: 2.5rem;
  --policy-radius: 12px;
}


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

html, body {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Raleway';
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
}

ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition);
}

input, button {
  font-size: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* Layout */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.content-wrapper {
  display: flex;
  padding: 20px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
  box-sizing: border-box;
}

.main-content {
  flex: 1;
  margin-top: var(--header-height);
  width: 100%;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
  z-index: 100;
  height: var(--header-height);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.logo-text {
  background: linear-gradient(135deg, var(--accent-color), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  padding: 10px 15px;
  font-weight: 500;
  color: var(--text-color);
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 15px;
  right: 15px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px 3px 0 0;
}

.header-actions {
  display: flex;
  gap: 15px;
}

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

.register-trigger {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.register-trigger:hover {
  background-color: #00e6a4;
}

.login-trigger {
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

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

/* Sidebar & Betslip Styles */
.bet-sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: calc(100vh - var(--header-height) - 40px);
  max-width: 100%;
}

.betslip {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.betslip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--primary-color);
  position: relative;
}

.betslip-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.bet-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 700;
}

.betslip-close {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.betslip-close:hover {
  opacity: 1;
}

.betslip-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.empty-betslip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

.betslip-actions {
  padding: 15px;
  border-top: 1px solid var(--border-color);
}

.stake-input {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.stake-input input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: var(--text-color);
}

.stake-input input::placeholder {
  color: var(--text-muted);
}

.remember-stake {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-left: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--text-color);
  transition: var(--transition);
}

.place-bet-btn {
  width: 100%;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.place-bet-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.place-bet-btn:not(.disabled):hover {
  background-color: #00e6a4;
}

.bet-amount {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 5px 0;
}

.potential-return {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}

/* Sports Content Styles - Special attention here */
.sports-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Content Tabs */
.content-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--accent-color);
}

.tab-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--accent-color);
}

/* Carousel */
.featured-carousel {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
}

.promo-banner {
  position: relative;
  height: auto;
  min-height: 300px;
  max-height: 300px;
  background-size: cover;
  background-position: center;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-content {
  max-width: 90%;
}

.promo-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-text {
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-note {
  font-size: 0.8rem;
  opacity: 0.8;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius-sm);
  align-self: flex-end;
  max-width: 90%;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.carousel-control.prev {
  left: 15px;
}

.carousel-control.next {
  right: 15px;
}

.carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator.active {
  background-color: var(--accent-color);
}

/* Quick Nav */
.quick-nav {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
}

.quick-nav-scroller {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 5px;
  width: 100%;
}

.quick-nav-scroller::-webkit-scrollbar {
  display: none;
}

.quick-nav-btn {
  padding: 10px 20px;
  white-space: nowrap;
  color: var(--text-color);
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

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

.quick-nav-btn.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
}

/* Sport Sections */
.sport-section {
  margin-bottom: 40px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: var(--primary-color);
  position: relative;
}

.sport-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sport-icon.cricket {
  background-image: url('/assets/img/zClass_Cricket.svg');
}

.sport-icon.tennis {
  background-image: url('/assets/img/zClass_Tennis.svg');
}

.sport-icon.soccer {
  background-image: url('/assets/img/zClass_Soccer.svg');
}

.sport-icon.basketball {
  background-image: url('/assets/img/zClass_Basketball.svg');
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
}

.view-all {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.view-all:hover {
  text-decoration: underline;
}

/* Event Tables */
.event-table {
  width: 100%;
  overflow-x: auto;
}

.table-header {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(auto-fit, minmax(60px, auto));
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.advanced .table-header {
  grid-template-columns: minmax(150px, 1fr) repeat(3, minmax(100px, 1fr));
}

.event-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(auto-fit, minmax(60px, auto));
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.advanced .event-row {
  grid-template-columns: minmax(150px, 1fr) repeat(3, minmax(100px, 1fr));
}

.event-row:last-child {
  border-bottom: none;
}

.event-row:hover {
  background-color: var(--card-bg-hover);
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.event-teams {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-kit {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.team-name {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-time {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-status.live {
  color: var(--live-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.event-status.live::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--live-color);
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.event-indicator {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.event-indicator.live-stream {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300FFB6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="23 7 16 12 23 17 23 7"></polygon><rect x="1" y="5" width="15" height="14" rx="2" ry="2"></rect></svg>');
}

.event-score {
  margin-top: 5px;
  margin-bottom: 5px;
}

.tennis-score {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
}

.score-set, .score-game, .score-point {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 30px;
  text-align: center;
}

.score-set {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 3px 5px;
  border-radius: 3px;
}

.odds-btn {
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-width: 70px;
}

.odds-btn:hover {
  background-color: var(--odds-hover);
  color: var(--accent-color);
}

.odds-btn.suspended {
  opacity: 0.5;
  cursor: not-allowed;
}

.odds-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.handicap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.handicap-value {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Racing Ribbons */
.racing-ribbons {
  padding: 10px;
  width: 100%;
}

.ribbon-scroller {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.ribbon-scroll-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ribbon-scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ribbon-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 5px;
  flex: 1;
  width: 100%;
}

.ribbon-container::-webkit-scrollbar {
  display: none;
}

.race-ribbon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  min-width: 220px;
  transition: var(--transition);
  cursor: pointer;
}

.race-ribbon:hover {
  background-color: var(--primary-color);
}

.race-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.race-icon.greyhound {
  background-color: #555;
}

.race-icon.horse {
  background-color: #865c3b;
}

.race-content {
  flex: 1;
  overflow: hidden;
}

.race-title {
  font-weight: 600;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* Footer Styles */
.main-footer {
  margin-top: auto;
  background-color: #1f1f1f;
  padding: 40px 0 20px;
  width: 100%;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-menu {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.main-logo {
  margin-bottom: 10px;
}

.partner-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.partner-logo {
  max-width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo.wide {
  max-width: 200px;
}

.footer-info {
  text-align: center;
  margin-bottom: 30px;
}

.footer-about {
  max-width: 800px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.footer-text {
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.gambling-warning {
  background-color: #fff;
  color: #000;
  padding: 10px;
  margin: 20px 0;
  border-radius: var(--border-radius-sm);
}

.warning-header {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
  text-align: center;
}

.warning-text {
  font-size: 0.85rem;
  text-align: center;
}

.warning-text a {
  color: #000;
  text-decoration: underline;
}

.license {
  margin-top: 30px;
}

.copyright {
  margin-top: 20px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0 auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
}

.footer-disclaimer a {
  font-weight: 700;
}

/* Modals */
.age-verify-modal,
.signup-modal,
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.age-verify-modal.active,
.signup-modal.active,
.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.age-verify-content,
.signup-content,
.contact-content {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.age-verify-modal.active .age-verify-content,
.signup-modal.active .signup-content,
.contact-modal.active .contact-content {
  transform: translateY(0);
}

.signup-close,
.contact-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.signup-close:hover,
.contact-close:hover {
  color: var(--text-color);
}

.age-verify-modal h3,
.signup-modal h3,
.contact-modal h3 {
  margin-bottom: 20px;
  text-align: center;
}

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

.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  width: 100px;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #00e6a4;
}

.btn-secondary {
  background-color: var(--danger-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #ff3333;
}

.age-verify-warning {
  color: var(--danger-color);
  margin-top: 15px;
  text-align: center;
  display: none;
}

.signup-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.signup-form .btn-primary {
  width: 100%;
  margin-top: 20px;
}

.signup-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.link-text {
  color: var(--accent-color);
  cursor: pointer;
}

.link-text:hover {
  text-decoration: underline;
}

.contact-email {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.contact-email:hover {
  text-decoration: underline;
}

/* Policy Pages Styling */
.policy-container {
  max-width: 1000px;
  margin: calc(var(--header-height) + 30px) auto 50px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.policy-header {
  margin-bottom: var(--policy-spacing);
  text-align: center;
}

.policy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.policy-content {
  background-color: var(--card-bg);
  border-radius: var(--policy-radius);
  padding: var(--policy-spacing);
  box-shadow: var(--shadow);
  width: 100%;
  box-sizing: border-box;
}

.policy-section {
  margin-bottom: var(--policy-spacing);
  padding-bottom: var(--policy-spacing);
  border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.policy-section h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--text-color);
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 1rem 0 1.5rem 2rem;
  list-style-type: disc;
}

.policy-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.cookie-table-container {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cookie-table th {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 12px 15px;
  font-weight: 600;
}

.cookie-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-color);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--accent-color);
}

.footer-menu .active {
  color: var(--accent-color);
  font-weight: 600;
}

/* Team Kit Styling */
.team-kit.sri-lanka {
  background-color: #34165F;
  position: relative;
}

.team-kit.sri-lanka::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" fill="%23FBED32"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.australia {
  background-color: #FBED32;
  position: relative;
}

.team-kit.australia::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" fill="%23235234"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* Soccer teams */
.team-kit.sydney {
  background-color: #0046A8;
  position: relative;
}

.team-kit.sydney::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.bangkok {
  background-color: #D6003D;
  position: relative;
}

.team-kit.bangkok::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.nam-dinh {
  background-color: #800000;
  position: relative;
}

.team-kit.nam-dinh::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.hiroshima {
  background-color: #FC7E00;
  position: relative;
}

.team-kit.hiroshima::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.al-wehdat {
  background-color: #0B7540;
  position: relative;
}

.team-kit.al-wehdat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.shabab {
  background-color: #F0F0F0;
  position: relative;
}

.team-kit.shabab::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23777777"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.al-wakrah {
  background-color: #0A0A0A;
  position: relative;
}

.team-kit.al-wakrah::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23002B87"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.al-taawon {
  background-color: #FBED32;
  position: relative;
}

.team-kit.al-taawon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c.83 0 1.5.67 1.5 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.83.67-1.5 1.5-1.5zM12 19c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z" fill="%23002B87"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* Basketball teams */
.team-kit.raptors {
  background-color: #CE1141;
  position: relative;
}

.team-kit.raptors::after,
.team-kit.sixers::after,
.team-kit.knicks::after,
.team-kit.pacers::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 19.92c-3.17-.33-5.59-2.75-5.92-5.92H7v5.92zM7 13H1.08c.33-3.17 2.75-5.59 5.92-5.92V13zm6 6.92c-1.68-.17-3.22-.76-4.5-1.92H13v1.92z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.sixers {
  background-color: #006BB6;
  position: relative;
}

.team-kit.knicks {
  background-color: #F58426;
  position: relative;
}

.team-kit.pacers {
  background-color: #FDBB30;
  position: relative;
}

.team-kit.pistons {
  background-color: #C8102E;
  position: relative;
}

.team-kit.pistons::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 19.92c-3.17-.33-5.59-2.75-5.92-5.92H7v5.92zM7 13H1.08c.33-3.17 2.75-5.59 5.92-5.92V13zm6 6.92c-1.68-.17-3.22-.76-4.5-1.92H13v1.92z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.bulls {
  background-color: #CE1141;
  position: relative;
}

.team-kit.bulls::after,
.team-kit.grizzlies::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 19.92c-3.17-.33-5.59-2.75-5.92-5.92H7v5.92zM7 13H1.08c.33-3.17 2.75-5.59 5.92-5.92V13zm6 6.92c-1.68-.17-3.22-.76-4.5-1.92H13v1.92z" fill="%23000000"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.team-kit.grizzlies {
  background-color: #5D76A9;
  position: relative;
}

.team-kit.suns {
  background-color: #1D1160;
  position: relative;
}

.team-kit.suns::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 19.92c-3.17-.33-5.59-2.75-5.92-5.92H7v5.92zM7 13H1.08c.33-3.17 2.75-5.59 5.92-5.92V13zm6 6.92c-1.68-.17-3.22-.76-4.5-1.92H13v1.92z" fill="%23E56020"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* Enhanced team kit hover effects */
.team-kit {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
}

.team-kit:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--accent-color);
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .bet-sidebar {
    width: 100%;
    position: sticky;
    height: auto;
    margin-bottom: 20px;
  }
  
  .betslip {
    height: auto;
  }
  
  .betslip-content {
    max-height: 300px;
  }
  
  .sports-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-header {
    height: auto;
    padding: 10px 0;
  }
  
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .main-content {
    margin-top: 120px;
  }
  
  .content-wrapper {
    padding: 10px;
  }
  
  .promo-banner {
    padding: 20px;
  }
  
  .promo-content {
    max-width: 100%;
  }
  
  .promo-heading {
    font-size: 1.5rem;
  }
  
  .promo-text {
    font-size: 1rem;
  }
  
  .table-header,
  .event-row {
    grid-template-columns: minmax(120px, 1fr) repeat(auto-fit, minmax(60px, auto));
    padding: 8px 10px;
  }
  
  .advanced .table-header,
  .advanced .event-row {
    grid-template-columns: minmax(120px, 1fr) repeat(2, minmax(80px, auto));
  }
  
  .odds-col:nth-child(3),
  .odds-btn:nth-child(3),
  .odds-group:nth-child(3) {
    display: none;
  }
  
  .partner-logos {
    gap: 15px;
  }
  
  .partner-logo {
    max-width: 80px;
  }
  
  .policy-container {
    margin-top: calc(var(--header-height) + 40px);
    padding: 0 15px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-content {
    padding: var(--policy-spacing) 15px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }
  
  .cookie-table th, 
  .cookie-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 10px;
  }
  
  .nav-link {
    padding: 8px;
  }
  
  .btn-auth {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .promo-banner {
    height: auto;
    min-height: 180px;
    padding: 15px;
  }
  
  .promo-heading {
    font-size: 1.2rem;
  }
  
  .event-teams {
    font-size: 0.9rem;
  }
  
  .table-header,
  .event-row {
    padding: 8px 5px;
    grid-template-columns: minmax(100px, 1fr) repeat(auto-fit, minmax(50px, auto));
  }
  
  .odds-btn {
    padding: 6px;
    min-width: 50px;
    font-size: 0.85rem;
  }
  
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .age-verify-content,
  .signup-content,
  .contact-content {
    padding: 20px;
    max-width: 90%;
  }
  
  .odds-col:nth-child(n+3),
  .odds-btn:nth-child(n+3) {
    display: none;
  }
  
  .policy-container {
    margin-top: calc(var(--header-height) + 20px);
    padding: 0 10px;
  }

  .policy-header h1 {
    font-size: 1.8rem;
  }

  .policy-content {
    padding: 20px 12px;
  }

  .policy-section h2 {
    font-size: 1.2rem;
  }

  .policy-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .policy-list {
    margin-left: 1.5rem;
  }
}


/* Footer updates for legal information */
.footer-text.legal-info {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.4;
  margin: 15px 0;
}

.footer-text.server-time {
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
}

/* Partner logo styles */
.partner-logo img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

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

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-text.legal-info {
    font-size: 0.7rem;
  }
  
  .partner-logo img {
    max-height: 30px;
  }
}


/* Hockey Team Styles */
.team-kit.toronto-maple-leafs {
  background-color: #00205B;
  position: relative;
}

.team-kit.montreal-canadiens {
  background-color: #AF1E2D;
  position: relative;
}

.team-kit.vancouver-canucks {
  background-color: #00843D;
  position: relative;
}

.team-kit.calgary-flames {
  background-color: #C8102E;
  position: relative;
}

.team-kit.edmonton-oilers {
  background-color: #041E42;
  position: relative;
}

.team-kit.winnipeg-jets {
  background-color: #041E42;
  position: relative;
}

.team-kit.ottawa-senators {
  background-color: #C52032;
  position: relative;
}

.team-kit.new-york-rangers {
  background-color: #0038A8;
  position: relative;
}

/* Hockey team logos overlay */
.team-kit.toronto-maple-leafs::after,
.team-kit.montreal-canadiens::after,
.team-kit.vancouver-canucks::after,
.team-kit.calgary-flames::after,
.team-kit.edmonton-oilers::after,
.team-kit.winnipeg-jets::after,
.team-kit.ottawa-senators::after,
.team-kit.new-york-rangers::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 19.92c-3.17-.33-5.59-2.75-5.92-5.92H7v5.92zM7 13H1.08c.33-3.17 2.75-5.59 5.92-5.92V13zm6 6.92c-1.68-.17-3.22-.76-4.5-1.92H13v1.92z" fill="%23FFFFFF"/></svg>');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* Racing specific styles */
.featured-race {
  margin-top: 20px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.race-details-header {
  background-color: var(--primary-color);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.race-details-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.race-type {
  font-size: 0.9rem;
  opacity: 0.8;
}

.race-runners-table {
  padding: 0;
}

.trap-col {
  width: 60px;
}

.dog-col {
  flex: 1;
}

.trap-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  color: #000;
}

.trap-1 { background-color: #ff0000; }
.trap-2 { background-color: #0000ff; }
.trap-3 { background-color: #ffffff; }
.trap-4 { background-color: #000000; color: #fff; }
.trap-5 { background-color: #ff8000; }
.trap-6 { background-color: #00ff00; }

.runner-details {
  margin-left: 10px;
}

.runner-name {
  font-weight: 600;
}

.runner-info {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.race-tabs {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.race-tab {
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  background-color: var(--card-bg);
  color: var(--text-color);
  font-weight: 500;
  cursor: pointer;
}

.race-tab.active {
  background-color: var(--primary-color);
  color: #fff;
}

.race-specials {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-top: 15px;
}

.specials-header {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.special-bet {
  margin-bottom: 15px;
}

.special-name {
  font-weight: 500;
  margin-bottom: 8px;
}

.special-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.special-options .odds-btn {
  padding: 8px 15px;
}

/* Responsive tweaks for new components */
@media (max-width: 768px) {
  .race-details-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .race-type {
    margin-top: 5px;
  }
  
  .race-tabs {
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .race-tab {
    white-space: nowrap;
  }
  
  .special-options {
    flex-direction: column;
  }
  
  .special-options .odds-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .runner-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
  }
  
  .runner-details {
    margin: 10px 0;
    width: 100%;
  }
  
  .odds-group {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
  }
}