@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=VT323&display=swap');

body {
    background-color: #020617;
    color: #94a3b8;
    font-family: 'Courier Prime', monospace;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Special Elite', cursive;
    color: #10b981; /* emerald-500 */
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

a {
    color: #10b981;
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: #34d399;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

.terminal-border {
    border: 1px solid #1e293b;
    background-color: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    margin-top: 2rem;
}

.text-glow {
    text-shadow: 0 0 5px rgba(52, 211, 153, 0.5);
}

.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 100;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 101;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.02) 10%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.nav {
    margin-bottom: 3rem;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
}

.nav a {
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.release-entry {
    margin-bottom: 3rem;
    padding-left: 1rem;
    border-left: 2px solid #1e293b;
}

.date {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #10b981;
    border-radius: 4px;
    color: #10b981;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.btn:hover {
    background-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.btn-disabled {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #334155;
    border-radius: 4px;
    color: #475569;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    cursor: not-allowed;
    background-color: rgba(30, 41, 59, 0.3);
}
