.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-verification-overlay.show {
    display: flex;
    opacity: 1;
}

.age-verification-modal {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.age-verification-modal h2 {
    color: #ff4444;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-verification-modal p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.age-verification-modal ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.age-verification-modal li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-verification-modal a {
    color: #0066cc;
    text-decoration: none;
}

.age-verification-modal a:hover {
    text-decoration: underline;
}

.age-verification-modal button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.age-verification-modal button:hover {
    background: #218838;
} 