#age-verification-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 9999; /* Ensure it's on top of everything */
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Optional: adds a blur effect to the background */
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%; /* Responsive width */
}

.modal-content h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.modal-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

#confirm-age-button {
    padding: 12px 25px;
    background: #007bff; /* Primary blue */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

#confirm-age-button:hover {
    background: #0056b3; /* Darker blue on hover */
}

.modal-content .disclaimer {
    margin-top: 20px;
    font-size: 0.85em;
}

.modal-content .disclaimer a {
    color: #007bff;
    text-decoration: none;
}

.modal-content .disclaimer a:hover {
    text-decoration: underline;
}

.luxurious-script-regular {
  font-family: "Luxurious Script", cursive;
  font-weight: 400;
  font-style: normal;
}