body {
    background-color: #000;
    color: #00ff88;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

#terminal {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
    background-color: #111;
    border: 1px solid #00ff88;
    box-shadow: 0 0 20px #00ff88;
    border-radius: 8px;
    height: 90%;
    overflow-y: auto;
}

#story {
    white-space: pre-wrap;
    line-height: 1.5;
    padding-bottom: 20px;
}

.choice {
    background-color: #000;
    color: #00ff88;
    border: 1px solid #00ff88;
    padding: 10px 15px;
    font-family: inherit;
    margin: 10px 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    display: block;
    width: 100%;
    text-align: left;
}

.choice:hover {
    background-color: #00ff88;
    color: #000;
}

.typing {
    border-right: 2px solid #00ff88;
    animation: blink 1s infinite step-start;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.glitch {
    color: #00ff88;
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 2px 0 red;
    }
    25% {
        text-shadow: -2px 0 cyan;
    }
    50% {
        text-shadow: 2px 2px yellow;
    }
    75% {
        text-shadow: -2px -2px blue;
    }
    100% {
        text-shadow: 0 0 #00ff88;
    }
}

#footer {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.95);
    color: #6ee7b7;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 6px 22px 6px 18px;
    border-radius: 22px;
    border: 1px solid #233c2e;
    box-shadow: 0 0 0 1.5px #233c2e;
    z-index: 10;
    font-size: 1rem;
    width: auto;
    min-width: 180px;
    display: inline-block;
}

.footer-label {
    color: #b5c9b8;
    letter-spacing: 0.04em;
    font-size: 0.98em;
    margin-right: 4px;
    opacity: 0.7;
}

.footer-link {
    color: #6ee7b7;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #00ff88;
    text-shadow: 0 0 2px #00ff88;
    background: none;
    border-radius: 3px;
    padding: 0;
}

#landing-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#landing-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#landing-title {
    color: #00ff88;
    font-family: 'Courier New', Courier, monospace;
    font-size: 3.2rem;
    margin-bottom: 48px;
    letter-spacing: 0.04em;
    text-shadow: 0 0 16px #00ff88, 0 0 2px #00ff88;
    font-weight: bold;
}
#play-now {
    font-size: 1.4rem;
    padding: 18px 48px;
    border-radius: 8px;
    margin-top: 12px;
    box-shadow: 0 0 8px #00ff88;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto !important;
    text-align: center !important;
    min-width: 220px;
    max-width: 90vw;
}
#landing-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100vw;
}
#landing-footer .footer-label,
#landing-footer .footer-link {
    font-size: 1rem;
} 