.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 119, 188, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.age-verification-popup.hidden {
    opacity: 0;
}

.age-verification-content h2 {
    font-family: Queering;
    font-size: 64px;
    color: rgb(55, 119, 188);
    margin: 0;
}
.age-verification-content  p  {
    font-family: "Basis Grotesk";
}
.age-verification-content  button  {
    font-family: "Basis Grotesk";
}

.age-verification-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.age-verification-popup.hidden .age-verification-content {
    transform: translateY(-20px);
}

.country-selection {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.country-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Basis Grotesk";
    font-weight: 500;
    color: #333;
}

.country-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Basis Grotesk";
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: #3777BC;
}

.age-verification-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verification-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.age-verification-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.age-verify-yes {
   
    color: #333;

}

.age-verify-no {
   
    color: #333;
}

.age-verification-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    background-color: #3777BC;
    color: white;
}

.site-content-wrapper {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none; /* Start hidden */
}

.site-content-wrapper.visible {
    opacity: 1;
    display: block;
} 