#ageModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

#ageModal {
    background: #222;
    color: #fff;
    max-width: 420px;
    padding: 35px 30px 28px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
    text-align: center;
    border: 2px solid crimson;
}

#ageModal h2 {
    margin: 0 0 18px 0;
    font-size: 2rem;
    color: crimson;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#ageModal p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ddd;
}

#enterBtn {
    background: linear-gradient(90deg, #00b09b 0%, #0099ff 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 8px;
    transition: background 0.2s;
    box-shadow: 0 2px 10px #0099ff55;
}

#enterBtn:hover {
    background: linear-gradient(90deg, #0099ff 0%, #00b09b 100%);
}

#exitBtn {
    background: #555;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 8px;
    transition: background 0.2s;
}

#exitBtn:hover {
    background: #333;
}

body.age-locked {
    overflow: hidden;
}