h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif, Inter, system-ui, sans-serif;
  }
  body {
    font-family: Poppins, sans-serif, Inter, system-ui, sans-serif;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup {
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ff3e55;
    margin-bottom: 1rem;
  }
  
  .popup p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #e0e0e0;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
  }
  
  .btn-primary {
    background-color: #ff3e55;
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #e6394e;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #b3b3b3;
    border: 1px solid #444;
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
  }
  
  @media (max-width: 600px) {
    .buttons {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

  .age-restriction {
    width: 100%;
    height: 100vh;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Content box */
.content {
    max-width: 600px;
    padding: 20px;
}

/* 18+ Icon */
.icon {
    font-size: 50px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    display: inline-block;
    padding: 20px 30px;
    margin-bottom: 20px;
}

/* Message Text */
.message {
    font-size: 22px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
    .icon {
        font-size: 40px;
        padding: 15px 25px;
    }
    .message {
        font-size: 18px;
    }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: #e0e0e0;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: white;
}

#successMessage {
  display: none;
  color: green;
  margin-top: 10px;
  font-weight: bold;
}