@font-face {
  font-family: "PT Sans";
  src: url(/assets/fonts/PT_Sans/PTSans-Regular.ttf);
}

:root {
  /* Primary semantic colors */
  --color-primary: #22C55E;      /* Changed to emerald green */
  --color-secondary: #84CC16;    /* Changed to lime green */
  --color-light: #F0FDF4;        /* Changed to very light green */
  --color-bg: #0F1419;           /* Changed to deep forest green */
  --color-text: #FFFFFF;         /* Kept white */
  --color-text-secondary: rgba(220, 255, 230, 0.8); /* Adjusted to green tint */
  --color-border: rgba(34, 197, 94, 0.2); /* Adjusted to green border */
  
  /* Functional colors */
  --main-bg-color: #F0FDF4;      /* Changed to very light green */
  --header-bg-color: #16A34A;    /* Changed to forest green */
  --footer-bg-color: #16A34A;    /* Changed to forest green */
  --text-color: #14532D;         /* Changed to dark green */
  --accent-color: #84CC16;       /* Changed to lime green */
  --button-color: #84CC16;       /* Changed to lime green */
  --border-color: #BBF7D0;       /* Changed to light green */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'PT Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--main-bg-color);
}

/* Age Verification Modal */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  z-index: 999;
}

.banner {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.banner_block {
  background: linear-gradient(145deg, #152330, var(--color-bg));
  padding: 3rem;
  border-radius: 1.5rem;
  border: 2px solid var(--color-border);
  box-shadow: 0 25px 50px -12px rgba(52, 168, 128, 0.15);
  text-align: center;
  max-width: 520px;
  width: 90%;
  position: relative;
  animation: modalPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

@keyframes modalPop {
  0% {
      transform: scale(0.95) translateY(20px);
      opacity: 0;
  }
  100% {
      transform: scale(1) translateY(0);
      opacity: 1;
  }
}

.banner_title {
  font-size: 2.2rem;
  font-family: "PT Sans", "PT Sans", sans-serif;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.banner_buttons {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.banner_buttons button {
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.banner_buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(52, 168, 128, 0.25);
  filter: brightness(110%);
}

.banner_atent {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(52, 168, 128, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-button:hover {
  background: var(--color-primary);
  color: var(--color-text);
  transform: rotate(90deg);
}

/* Header Styles */
.header {
  width: 100%;
  background-color: var(--header-bg-color);
  color: white;
  text-align: center;
}

.age-warning {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
}

.age-icon {
  font-size: 18px;
  font-weight: bold;
  border: 2px solid white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warning-text {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* Main Content Styles */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-section {
  text-align: center;
  padding: 20px 0 40px;
  background-image: url(/assets/images/hero.png);
  background-size: cover;
  background-position: center;
}

.hero-image {
  position: relative;
  margin-bottom: 30px;
}

.arc-image {
  max-width: 300px;
  height: auto;
  padding-top: 6rem;
}

.hero-title {
  position: relative;
  margin-top: -30px;
}

.hero-banner {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
}

.hero-year {
  font-size: 22px;
  color: var(--accent-color);
  font-weight: bold;
  margin-top: 5px;
}

.main-title {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.title-green {
  color: var(--header-bg-color);
}

.main-description {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Betting Table Styles */
.betting-table {
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table-header {
  display: flex;
  background-color: var(--header-bg-color);
  color: white;
  padding: 15px 10px;
  font-weight: bold;
}

.table-row {
  display: flex;
  background-color: white;
  padding: 15px 10px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.table-column {
  flex: 1;
  padding: 0 10px;
  text-align: center;
}

.site-logo {
  max-width: 150px;
  height: auto;
}

.bonus-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.rating-number {
  font-size: 32px;
  color: var(--header-bg-color);
  margin-bottom: 5px;
}

.rating-stars {
  color: gold;
  font-size: 24px;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.disclaimer-logo {
  width: 100px;
  margin-bottom: 20px;
}

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

.certification-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

/* Info Section */
.info-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.info-title {
  color: var(--header-bg-color);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.info-text {
  font-size: 16px;
  line-height: 1.7;
}

/* Footer Styles */
.footer {
  background-color: var(--footer-bg-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

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

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-link {
  color: white;
  text-decoration: none;
}

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

.footer-copyright {
  font-size: 14px;
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .age-warning {
      flex-direction: column;
      padding: 15px;
  }

  .warning-text {
      font-size: 14px;
      text-align: center;
  }

  .main-title {
      font-size: 28px;
  }

  .table-header {
      display: none;
  }

  .table-row {
      flex-direction: column;
      padding: 20px;
  }

  .table-column {
      width: 100%;
      margin-bottom: 15px;
  }

  .certification-logos {
      gap: 15px;
  }

  .footer-logos {
      gap: 15px;
  }

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

@media (max-width: 480px) {
  .banner_block {
      padding: 2.5rem 1.5rem;
  }
  
  .banner_title {
      font-size: 1.8rem;
  }
  
  .banner_buttons button {
      padding: 1rem 1.5rem;
  }
}


.betting-sites-list {
  margin: 30px 0;
}

.betting-site-card {
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 10px 20px;
}

.site-logo-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-logo {
  max-width: 180px;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}

.site-bonus-container {
  flex: 1;
  color: white;
  text-align: center;
}

.bonus-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.bonus-value {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.site-rating-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-size: 42px;
  color: white;
  margin: 0;
}

.rating-stars {
  color: #FFD700;
  font-size: 24px;
}

.site-cta-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .betting-site-card {
      flex-direction: column;
      padding: 20px;
  }
  
  .site-logo-container, .site-bonus-container, .site-rating-container, .site-cta-container {
      margin-bottom: 15px;
      width: 100%;
  }
}


/* Styles spécifiques pour les cartes des sites de paris */
.betting-sites-list {
  margin: 30px 0;
}

.betting-site-card {
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 10px 20px;
}

.site-logo-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-logo {
  max-width: 180px;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}

.site-bonus-container {
  flex: 1;
  color: white;
  text-align: center;
}

.bonus-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.bonus-value {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.site-rating-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-size: 42px;
  color: white;
  margin: 0;
}

.rating-stars {
  color: #FFD700;
  font-size: 24px;
}

.site-cta-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-button {
  background-color: #D40F17;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #a51e1e;
}

@media (max-width: 768px) {
  .betting-site-card {
      flex-direction: column;
      padding: 20px;
  }
  
  .site-logo-container, .site-bonus-container, .site-rating-container, .site-cta-container {
      margin-bottom: 15px;
      width: 100%;
  }
}