/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.age-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    background: #000;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.3);
    animation: slideUp 0.4s ease;
}

.age-modal-logo {
    margin-bottom: 25px;
}

.age-modal-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

.age-modal-content h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-modal-content p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-disclaimer {
    font-size: 14px !important;
    color: #999 !important;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 20px 0 !important;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.age-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.age-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.age-btn-deny {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-deny:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.5);
}

.age-notice {
    font-size: 12px !important;
    color: #666 !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .age-modal-content {
        padding: 30px 20px;
        margin: 15px;
    }

    .age-modal-logo img {
        height: 60px;
    }

    .age-modal-content h2 {
        font-size: 24px;
    }

    .age-modal-content p {
        font-size: 14px;
    }

    .age-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

