/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
  font-size: 17px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #111;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.age-tag {
  color: #ffc107;
  font-size: 14px;
  margin-left: 8px;
}

/* Desktop Navigation */
.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #ffc107;
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    background-color: #222;
    padding: 10px;
    border-radius: 8px;
  }

  .site-nav ul.active {
    display: flex;
        position: absolute;
        left: 0;
        text-align: center;
        top: 70px;
  }

  .site-nav a {
    padding: 10px;
    font-size: 16px;
  }
}
/* Banner Styles */
.main-banner {
  padding: 60px 0;
  background-color: #fdf7f0;
}

.main-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.banner-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #222;
}

.banner-content .highlight {
  font-size: 20px;
  color: #ff9500;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* About Section Styles */
.about-section {
  background-color: #fff8f2;
  padding: 60px 0;
  text-align: center;
}

.about-section .age-icon img {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.about-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}

.about-title span {
  color: #ffb703;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

.disclaimer, .age-warning {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.disclaimer strong u,
.age-warning strong u {
  color: #222;
}

/* Chillbet Block Styles */
.chillbet-block {
  background-color: #f0faff;
    border-radius: 12px;
    padding: 30px;
    margin: 50px auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
}

.chillbet-block img {
  max-width: 180px;
  height: auto;
  margin-right: 30px;
}

.chillbet-info {
  flex: 1;
  font-size: 20px;
}

.chillbet-info .stars {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 10px;
}

.chillbet-info ul {
  padding: 0;
  list-style: none;
  margin-top: 10px;
  line-height: 1.8;
}

.chillbet-info ul li {
  margin-bottom: 8px;
}

.chillbet-button a {
  display: inline-block;
  padding: 14px 28px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.chillbet-button a:hover {
  background-color: #0056b3;
}

/* Professionals Section Styles */
.professionals-section {
  padding: 60px 0;
  background-color: #fef8f3;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 40px;
  color: #111;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card img {
  width: 80px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

.card p {
  font-size: 18px;
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
}
/* Footer Styles */
.site-footer {
  background-color: #1a1a19;
    color: #fff;
    padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.segob-logo {
  margin-top: 20px;
  width: 200px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.quick-links li a:hover {
  color: #ffffff;
}

.trust-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.trust-logos a img {
  
  transition: opacity 0.3s;
}

.trust-logos a img:hover {
  opacity: 1;
}
.contact-section {
  padding: 60px 20px;
  background-color: #f5faff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-text .primary {
  color: #0a2540;
  font-weight: bold;
}

.contact-text .accent {
  color: #00c4cc;
  font-weight: bold;
}

.contact-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-top: 20px;
}

.contact-email {
  font-weight: bold;
  margin-top: 10px;
  color: #0a2540;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background-color: #0a2540;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #00789c;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.about-us-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #0a2540;
}

.about-us-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.about-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0a2540;
}

.about-content h3 {
  font-size: 24px;
  color: #00c4cc;
  margin-top: 30px;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}
.terms-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #0a2540;
}

.terms-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.terms-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0a2540;
}

.terms-content h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #00c4cc;
}

.terms-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.terms-updated {
  font-style: italic;
  color: #888;
  margin-top: 30px;
}
/* Mobile Enhancements */
@media (max-width: 768px) {
  .site-header .container {
    
  }

  .logo a {
    font-size: 24px;
  }

  .site-nav ul {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
  }

  .site-nav a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .main-banner .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content .highlight {
    font-size: 18px;
  }

  .banner-image img {
    max-width: 100%;
    margin-top: 20px;
  }

  .chillbet-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .chillbet-block img {
    margin: 0 0 20px 0;
  }

  .chillbet-info {
    font-size: 18px;
  }

  .chillbet-button a {
    font-size: 18px;
    padding: 12px 20px;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 16px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
  }

  .trust-logos {
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 32px;
  }

  .terms-title {
    font-size: 30px;
  }

  .terms-content h3 {
    font-size: 20px;
  }

  .terms-content p {
    font-size: 16px;
  }
}
.cookie-banner {
  position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0a2540;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 70%;
}

.cookie-banner a {
  color: #00c4cc;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #00c4cc;
  color: #0a2540;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
}

@media (min-width: 600px) {
  .cookie-banner {
    flex-wrap: nowrap;
  }
  .cookie-banner button {
    margin-top: 0;
    margin-left: 20px;
  }
}
.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-popup-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  font-size: 18px;
}

.form-popup-content p {
  margin-bottom: 20px;
  color: #0a2540;
}

.form-popup-content button {
  padding: 10px 20px;
  border: none;
  background-color: #00c4cc;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.form-popup-content button:hover {
  background-color: #007b9f;
}
