/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease-out;
    position: relative;
}

.modal-content h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.modal-content li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    padding-left: 28px;
    position: relative;
}

.modal-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0EA5E9;
    border-radius: 50%;
}

.btn-primary {
    background: linear-gradient(135deg, #00CC66, #0066CC);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 204, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 204, 102, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Color highlights in content */
.green {
    color: #00CC66;
    font-weight: 600;
}

.red {
    color: #FF4757;
    font-weight: 600;
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .modal-content li {
        font-size: 14px;
        padding-left: 24px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        font-size: 16px;
    }
}