/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

:root {
    --console-green: #33ff33;
    --console-white: #aaaaaa;
    --console-dim: #666666;
    --terminal-bg: #000000;
    --terminal-border: #111;
}

body {
    margin: 0;
    margin-top: 0px;
    padding: 0;
    background-color: #000;
    font-family: 'Fira Code', monospace;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Terminal window styling */
.terminal {
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terminal-content {
    flex: 1;
    background-color: black;
    padding: 20px;
    overflow-y: auto;
}

/* Content styling */
.terminal-content {
    padding: 20px;
    color: #fff;
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
}

.title-section {
    text-align: left;
    margin-bottom: 20px;
}

.title-section span {
    display: block;
    margin: 5px 0;
    font-size: 14px;
}

.ubuntu-welcome {
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.ubuntu-info {
    color: var(--neon-green) !important;
    opacity: 0.8;
}

.ubuntu-login {
    margin: 15px 0 !important;
    opacity: 0.7;
}

.command-line {
    margin-top: 15px !important;
}

/* Neon text effects */
.neon-text {
    color: var(--console-green);
    text-shadow: none;
}

.neon-text-subtle {
    color: var(--console-white);
    text-shadow: none;
}

/* Game section */
.game-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    position: relative;
}    &::before {
        content: '>';
        color: var(--neon-green);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }


.game-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.game-info span {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
}

.game-container {
    text-align: center;
    margin-top: 20px;
    position: relative;
}



#gameCanvas {
    background-color: #000;
    width: 90%;
    height: 90%;
}

/* Animations */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--neon-green),
                    0 0 10px var(--neon-green),
                    0 0 20px var(--neon-green);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .terminal {
        width: 95%;
    }
    
    .terminal-content {
        padding: 20px;
    }
}
