#adult-verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    text-align: center;
}

#adult-verify-modal .content {
    max-width: 400px;
    padding: 30px;
    border: 2px solid #f44336;
    border-radius: 10px;
}

#adult-verify-modal .content h2 {
    margin-top: 0;
}

#adult-verify-modal .buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

#adult-verify-modal .buttons .yes {
    background-color: #4CAF50;
    color: white;
}

#adult-verify-modal .buttons .no {
    background-color: #f44336;
    color: white;
}