.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.age-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-modal {
    background: var(--header);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: url('/assets/img/home-4/hero/bg-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.age-verification-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header);
    z-index: -1;
    opacity: .8;
}

.age-verification-overlay.active .age-verification-modal {
    transform: translateY(0);
}

.age-verification-logo {
    width: 277px;
    margin-bottom: 25px;
}

.age-verification-question {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.age-verification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

.age-btn-yes {
    background: #c8a165;
    color: #fff;
}

.age-btn-yes:hover {
    background: #b58d50;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 161, 101, 0.3);
}

.age-btn-no {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

.age-verification-alert {
    margin-top: 20px;
    padding: 12px;
    background: rgba(225, 14, 1, 0.58);
    border: 1px solid #ff3b30;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}