:root {
  --primary-bg: #0a2820;
  --accent-yellow: #e2ff4d;
  --text-light: #ffffff;
  --text-gray: #a3a3a3;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

@font-face {
    font-family: "Poppins";
    src: url("/themes/tunifa-theme/assets/fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("/themes/tunifa-theme/assets/fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/themes/tunifa-theme/assets/fonts/Inter-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/themes/tunifa-theme/assets/fonts/Inter-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(190, 89, 12, 0.95);
  padding: 1rem 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-yellow);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--accent-yellow);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 3rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.testimonials {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-info h4 {
  color: var(--accent-yellow);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.faq {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-yellow);
  font-weight: 500;
}

.faq-answer {
  padding: 0 0 1rem;
  color: var(--text-gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 255, 77, 0.3);
}

.site-footer {
  background-color: var(--primary-bg);
  color: var(--text-light);
  padding-top: 4rem;
}

.footer-top {
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-about {
  max-width: 300px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--accent-yellow);
}

.footer-newsletter p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.newsletter-form .form-group {
  display: flex;
}

.newsletter-form .form-control {
  flex-grow: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
  padding: 0.5rem 1rem;
  background-color: var(--accent-yellow);
  color: var(--primary-bg);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form .btn:hover {
  background-color: #c9e642;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

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

.disclaimer p {
  margin-bottom: 0.5rem;
}

.disclaimer strong {
  color: var(--accent-yellow);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    text-align: center;
    align-items: center;
  }

  .footer-about {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  .newsletter-form .btn {
    margin-bottom: 0;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 40, 32, 0.95);
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

.how-to-play {
  padding: 4rem 0;
}

.how-to-play .container {
  max-width: 900px;
  margin: 0 auto;
}

.how-to-play .intro {
  text-align: center;
  margin-bottom: 3rem;
}

.how-to-play h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.how-to-play .intro p {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.how-to-play .steps {
  display: grid;
  gap: 3rem;
}

.how-to-play .step {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.how-to-play h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.how-to-play h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.how-to-play ul,
.how-to-play ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.how-to-play li {
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.page-header {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
}

.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: var(--text-gray);
}

.breadcrumbs .current {
  color: var(--accent-yellow);
}

@media (max-width: 768px) {
  .page-header {
    padding: 1.5rem 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .breadcrumbs {
    font-size: 0.8rem;
  }

  .how-to-play .container {
    padding: 0 1.5rem;
  }

  .how-to-play h2 {
    font-size: 2rem;
  }

  .how-to-play h3 {
    font-size: 1.5rem;
  }

  .how-to-play h4 {
    font-size: 1.2rem;
  }
}

.balls-system {
    padding: 4rem 0;
}

.balls-system .container {
    max-width: 900px;
    margin: 0 auto;
}

.balls-system .intro {
    text-align: center;
    margin-bottom: 3rem;
}

.balls-system h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.balls-system .scoring-system {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.balls-system h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.balls-system .scoring-category {
    margin-bottom: 2rem;
}

.balls-system h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.balls-system h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.balls-system ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.balls-system li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .balls-system .container {
        padding: 0 1.5rem;
    }

    .balls-system h2 {
        font-size: 2rem;
    }

    .balls-system h3 {
        font-size: 1.8rem;
    }

    .balls-system h4 {
        font-size: 1.3rem;
    }

    .balls-system h5 {
        font-size: 1.1rem;
    }
}

.page-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-gray);
}

.breadcrumbs .current {
    color: var(--accent-yellow);
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumbs {
        font-size: 0.8rem;
    }
}

.faq-section {
    padding: 4rem 0;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin: 0;
}

.faq-toggle {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section .container {
        padding: 0 1.5rem;
    }

    .faq-intro h2 {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

.page-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-gray);
}

.breadcrumbs .current {
    color: var(--accent-yellow);
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumbs {
        font-size: 0.8rem;
    }
}
.contact-section {
    padding: 4rem 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-link,
.info-address {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
}

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

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 0.25rem;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.btn-block {
    width: 100%;
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--accent-yellow);
    color: var(--primary-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.notification p {
    margin: 0;
    padding-right: 2rem;
}

.close-notification {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--primary-bg);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.75rem;
    }
}
/* Privacy Policy Section */
.privacy-policy-section {
  padding: 4rem 0;
  width: 100%;
  box-sizing: border-box;
}

.privacy-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 0.5rem;
}

.policy-intro {
  margin-bottom: 2rem;
}

.policy-intro h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.policy-section {
  margin-bottom: 2rem;
}

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

.policy-section p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-section ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.policy-section li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy-section .container {
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .policy-intro h2 {
    font-size: 1.75rem;
  }

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

  .policy-section ul {
    padding-left: 1.5rem;
  }

  body, html {
    overflow-x: hidden;
  }

  .policy-section p, .policy-section ul, .policy-section li {
    max-width: 100%;
    white-space: normal;
  }
}

.terms-conditions-section {
    padding: 4rem 0;
}

.terms-conditions-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
}

.terms-intro {
    margin-bottom: 2rem;
}

.terms-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.terms-section p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.terms-section ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .terms-conditions-section .container {
        padding: 0 1.5rem;
    }

    .terms-intro h2 {
        font-size: 1.75rem;
    }

    .terms-section h3 {
        font-size: 1.3rem;
    }
}
.age-verification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.age-verification-content {
  background-color: var(--primary-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
}

.age-verification h2 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.age-verification p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.age-verification button {
  margin: 0.5rem;
}

#under-18-message {
  color: var(--accent-yellow);
  font-weight: bold;
}



