@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Orbitron:wght@400;700&display=swap');

body {
    font-family: 'Roboto Mono', monospace; /* Font konsol */
    background-color: #0d1117; /* Background gelap khas terminal */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #00ff00; /* Teks hijau neon khas terminal */
    text-align: center;
    line-height: 1.6;
    overflow: hidden; /* Mencegah scroll jika ada efek */
}

.container {
    background-color: #161b22; /* Kotak sedikit lebih terang dari background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3), 0 0 10px rgba(0, 255, 0, 0.1); /* Glow hijau */
    max-width: 600px;
    width: 90%;
    border: 1px solid #005500; /* Border hijau gelap */
    position: relative;
    overflow: hidden;
    animation: terminalScan 4s infinite linear; /* Efek scan terminal */
}

/* Efek garis scanning pada container */
@keyframes terminalScan {
    0% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.3), 0 0 10px rgba(0, 255, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 0, 0.6), 0 0 15px rgba(0, 255, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.3), 0 0 10px rgba(0, 255, 0, 0.1);
    }
}

h1 {
    font-family: 'Orbitron', sans-serif; /* Font futuristik untuk judul */
    color: #00ffff; /* Biru cyan cerah */
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; /* Glow pada judul */
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 10px;
}

/* Efek Glitch pada H1 */
.glitch {
    animation: glitch 1.5s 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); }
}

h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: #00ffff;
    border-radius: 2px;
    box-shadow: 0 0 8px #00ffff;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #00ff00; /* Warna hijau neon untuk paragraf */
}

.console-text {
    color: #00ff00; /* Memastikan teks konsol selalu hijau */
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5); /* Sedikit glow pada teks */
}

.medan-info {
    background-color: #0a0c10; /* Background info box lebih gelap */
    border-left: 3px solid #00aaff; /* Border biru untuk info penting */
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 0.95em;
    box-shadow: inset 0 0 5px rgba(0, 170, 255, 0.3);
}

.medan-info p {
    margin: 5px 0;
    color: #00aaff; /* Teks info berwarna biru */
}

.highlight {
    font-weight: bold;
    color: #00ffff; /* Warna highlight cyan */
    text-shadow: 0 0 5px #00ffff;
}

/* Indikator status */
.status-indicator {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    animation: pulse 1.5s infinite ease-out;
}

.status-indicator.online {
    background-color: #00ff00; /* Hijau untuk online */
    box-shadow: 0 0 8px #00ff00, 0 0 15px rgba(0, 255, 0, 0.5);
}

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    color: #00ff00;
    vertical-align: middle;
    text-shadow: 0 0 5px #00ff00;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Efek background noise/grid (opsional, bisa berat) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.05)),
        linear-gradient(90deg, rgba(0, 255, 0, 0.03), rgba(0, 255, 0, 0.03));
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}