:root {
    --av-modal-bg: rgba(22, 22, 22, 0.95);
    --av-content-bg: #1e1e1e;
    --av-text-color: #ffffff;
    --av-text-muted: #a0a0a0;
    --av-primary-gradient: linear-gradient(45deg, #ff3366, #ff6b6b);
    --av-rainbow-gradient: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
}

.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--av-modal-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.age-verification-content {
    background-color: var(--av-content-bg);
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: av-fade-in 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rainbow border effect at the bottom */
.age-verification-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--av-rainbow-gradient);
}

.age-verification-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.age-verification-title {
    color: var(--av-text-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-verification-text {
    color: var(--av-text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.age-verification-subtext {
    color: var(--av-text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.age-verification-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.age-verification-actions .btn-primary {
    background: var(--av-primary-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    margin-bottom: 1rem;
}

.age-verification-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

.age-verification-actions .btn-outline-primary {
    background: transparent;
    border: 2px solid #555;
    color: var(--av-text-muted);
}

.age-verification-actions .btn-outline-primary:hover {
    border-color: #777;
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.age-verification-footer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--av-text-muted);
    opacity: 0.7;
}

@keyframes av-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .age-verification-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .age-verification-title {
        font-size: 1.5rem;
    }

    .age-verification-text {
        font-size: 1rem;
    }
}