@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background-image:
            radial-gradient(ellipse at top, #1a0f00 0%, transparent 60%),
            radial-gradient(ellipse at bottom, #0a0a0a 0%, transparent 80%);
}

.terminal-screen-base {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    scrollbar-width: thin;
    scrollbar-color: #44403c #0c0a08;
    text-shadow: 0 0 6px rgba(251, 146, 60, 0.25);
    position: relative;
}

#terminal-screen  { font-family: 'Share Tech Mono', 'Courier New', monospace; scrollbar-width: thin; scrollbar-color: #44403c #0c0a08; text-shadow: 0 0 6px rgba(251,146,60,0.25); position: relative; }
#releases-screen  { font-family: 'Share Tech Mono', 'Courier New', monospace; scrollbar-width: thin; scrollbar-color: #44403c #0c0a08; text-shadow: 0 0 6px rgba(251,146,60,0.25); position: relative; }

/* CRT scanline overlay */
#terminal-screen::after,
#releases-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.12) 2px,
            rgba(0, 0, 0, 0.12) 4px
    );
    pointer-events: none;
    z-index: 10;
}

#terminal-screen::-webkit-scrollbar,
#releases-screen::-webkit-scrollbar { width: 5px; }

#terminal-screen::-webkit-scrollbar-track,
#releases-screen::-webkit-scrollbar-track { background: #0c0a08; }

#terminal-screen::-webkit-scrollbar-thumb,
#releases-screen::-webkit-scrollbar-thumb { background: #44403c; border-radius: 2px; }

.cursor {
    display: inline-block;
    width: 9px;
    height: 1em;
    background-color: #f97316;
    vertical-align: text-bottom;
    margin-left: 1px;
    animation: blink 0.75s step-start infinite;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.8);
}

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

.line-prompt    { color: #b45309; }
.line-lyric     { color: #d6c9b0; }
.line-dim       { color: #44403c; }
.line-green     { color: #f97316; }
.line-pink      { color: #b91c1c; }

/* Releases table */
.rel-header     { color: #b45309; }
.rel-released   { color: #4ade80; }
.rel-unreleased { color: #b91c1c; }
.rel-title      { color: #d6c9b0; }
.rel-date       { color: #78716c; }
.rel-sep        { color: #292524; }

.rel-sep        { color: #292524; }

/* Releases flash-out animation */
.releases-flashing {
    animation: relFlash 0.4s step-start infinite;
}

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

.rel-header     { color: #b45309; }
.rel-released   { color: #4ade80; }
.rel-unreleased { color: #b91c1c; }
.rel-processing { color: #facc15; }
.rel-submitted  { color: #fb923c; }
.rel-title      { color: #d6c9b0; }
.rel-date       { color: #78716c; }
.rel-sep        { color: #292524; }