    @font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-style: normal;
}

    @font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-style: normal;
}

    @font-face {
  font-family: 'Roboto-RegularR';
  src: url('../fonts/Black Bullet Free.otf') format('opentype');
  font-style: normal;
}
 @font-face {
  font-family: 'Robotoq-Regular';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_bold_italic-BF64a625c93b0ce.otf') format('opentype');
  font-style: normal;
}


 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
  font-family: 'Roboto-Regular';
      background-color: #f9f9f9;
      color: #333;
    }

    header {
      background-color: #1a1a1a;
      height: 75px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    header img {
      height: 50px;
    }


    .hero {
      position: relative;
      width: 100%;
      height: 87vh;
      background: url('../../assets/images/Desk.webp') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-content {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px 100px;
      border-radius: 10px;
      text-align: center;
      color: #fff;
      bottom: 35%;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .hero-content button {
      padding: 12px 40px;
      background-color: #fff;
      border: none;
      border-radius: 10px;
      color: #000;
          font-size: 1.8rem;
    cursor: pointer;
    font-weight: bold;
    }
    
      #age-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgb(0 0 0 / 77%);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Modal */
    .age-modal {
      background: #000;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }

    .age-modal h2 {
      margin-bottom: 20px;
      color: #fff;
    }

    .age-modal button {
      padding: 10px 20px;
      margin: 10px;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
    }

    .privacy-policy {
      padding: 40px 20px;
      max-width: 800px;
      margin: auto;
    }

    .privacy-policy h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .privacy-policy p {
      margin-bottom: 15px;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    footer {
    height: 7vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .footer-link span {
        color: #fff;
  
    }
    
    .pp {
         color: #fff;
          text-decoration: none;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 1.8rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .hero-content {
        padding: 35px;
      }
      
      .footer-link span {
        font-size: 0.73rem;
    }
    }