#age-verification {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #1A1A1A;
    color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.age-verification-inner {
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 24px 18px;
    border-radius: 8px;
}

#btn-age-yes {
    margin-top: 1rem;
    background: #A52A5A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
#btn-age-yes:hover {
    background: #CBA135;
}
