.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.modal-content {
    background-color: #1c1c1c;
    color: #00ffcc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
    animation: zoomIn 0.5s ease-out;
}

.modal-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

.close-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00ffcc;
    color: black;
    font-family: 'Orbitron', sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #00cccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
