
/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.show {
    display: flex;
}

.age-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
}

.age-modal h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.age-modal p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.age-modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
}

.age-btn-no {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.age-btn-no:hover {
    background: #e5e7eb;
}