.age-gate-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.age-gate-box {
    background-color: #2c2c2c;
    color: #ffffff;
    max-width: 520px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.age-gate-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
}

.age-gate-subtitle {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 35px;
}

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

.age-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 180px;
}

.age-btn-gray {
    background-color: #555555;
    color: #ffffff;
}

.age-btn-gray:hover {
    background-color: #666666;
}

.age-btn-green {
    background-color: #007a1a;
    color: #ffffff;
}

.age-btn-green:hover {
    background-color: #009922;
}

@media (max-width: 480px) {
    .age-gate-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .age-btn {
        width: 100%;
    }
}
