﻿
body {
    background: #111;
}

.hidden {
    opacity: 0;
}

.console-container {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 4em;
    text-align: center;
    height: 3rem;
    width: 85%;
    display: block;
    position: absolute;
    color: #39ff14; /* Neon yeşil */
    top: 0;
    bottom: 0;
    left: 15%;
    right: 0;
    margin: auto;
    /* Neon efekt için gölgeler */
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #39ff14, 0 0 80px #39ff14;
    /* Hafif parlayan animasyon */
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
    .console-container {
        width: 100%;
        left: 0;
    }
}


    /* Neon parlama animasyonu */
    @keyframes neonGlow {
        from {
            text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #39ff14, 0 0 80px #39ff14;
        }

        to {
            text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14, 0 0 50px #39ff14, 0 0 100px #39ff14;
        }
    }



    .console-underscore {
        display: inline-block;
        position: relative;
        top: -0.14em;
        left: 10px;
    }
