#avp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
    z-index: 9998;
    display: none;
}

.age-verification-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    z-index: 9999;
    display: none;
    max-width: 500px;
    width: 90%;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
}

.age-number {
    font-size: clamp(3rem, 10vw, 6rem);
    color: #f00;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
    margin-bottom: 10px;
}

.verify-text {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 10px;
}

.button {
    width: 80%;
    max-width: 250px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.over-18-btn {
    background-color: #f00;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(183, 28, 28, 0.3);
}

.under-18-btn {
    background-color: transparent;
    color: #000;
    border: 2px solid #f00;
    box-shadow: 0 4px 8px rgba(183, 28, 28, 0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 28, 28, 0.4);
}

.over-18-btn:hover {
    background-color: #9a1414;
}

.under-18-btn:hover {
    background-color: rgba(183, 28, 28, 0.1);
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .age-verification-container {
        border-width: 15px;
        padding: 15px;
    }
    
    .button {
        padding: 12px;
        width: 65%;
    }
    
    .description {
        margin-bottom: 15px;
    }
}

@media (max-width: 360px) {
    .age-verification-container {
        border-width: 12px;
    }
    
    .age-number {
        margin-bottom: 5px;
    }
    
    .verify-text {
        margin-bottom: 10px;
    }
}