body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 5px #0f0;
}

header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #0f0;
}

nav a {
    color: #0f0;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    border-color: #0f0;
    box-shadow: 0 0 10px #0f0;
    background-color: rgba(0, 255, 0, 0.1);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); 
    padding: 20px;
}

.console-container {
    border: 1px solid #0f0;
    padding: 20px;
    background-color: rgba(0, 10, 0, 0.5);
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 15px #0f0 inset;
}

.console-text {
    font-size: 1.5em;
    white-space: pre;
}

.gif-container {
    margin-top: 30px;
}

.gif-container img {
    max-width: 100%;
    border: 1px solid #0f0;
    box-shadow: 0 0 10px #0f0;
}

.center-content {
    text-align: center;
}

.soon-text {
    font-size: 4em;
    animation: blink 1.5s infinite;
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-button {
    background-color: transparent;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #0f0;
    font-family: 'Courier New', Courier, monospace;    
    width: 280px; 
    box-sizing: border-box; 
}

.game-button:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 15px #0f0;
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    width: 100%;
    max-width: 1400px;
}

.video-card {
    background-color: transparent;
    border: 1px solid #0f0;
    text-decoration: none;
    color: #0f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #0f0;
}

.video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.video-title {
    padding: 15px;
    font-size: 1.1em;
    text-align: center;
    text-shadow: 0 0 5px #0f0;
    border-top: 1px solid #0f0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
