/* styles.css */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: -1;
}

.terminal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

#terminal-title {
    text-align: center;
    font-size: 2rem;
    color: #00ff00;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

#terminal-output {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #00ff00;
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.9);
}

.input-line {
    display: flex;
    align-items: center;
}

.prompt {
    color: #00ff00;
    margin-right: 10px;
}

#terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    outline: none;
}

#threat-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity : 0.5;
}

#data-visualization {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #terminal-title {
        font-size: 1.5rem;
    }

    #terminal-output {
        height: 200px;
    }

    #data-visualization {
        width: 200px;
        height: 150px;
        bottom: 10px;
        right: 10px;
    }
}