

@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');

/* RESET / BASE */
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    background-color: #000000;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 29px,
            rgba(31, 81, 255, 0.18) 29px,
            rgba(31, 81, 255, 0.18) 30px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 29px,
            rgba(31, 81, 255, 0.18) 29px,
            rgba(31, 81, 255, 0.18) 30px
        );
    color: #b8caff;
    font-family: 'decoder', monospace;
    font-size: 14px;
    margin: 0;
    padding: 8px;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
    line-height: 1.6;
}

a {
    color: #4d7cff;
    text-decoration: none;
}

a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

a:visited {
    color: #2a3a8a;
}

/* ---- WRAPPER ---- */
.wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* ---- BANNER ---- */
.banner {
    background-color: #000000;
    border: 2px solid #1F51FF;
    padding: 10px 14px;
    margin-bottom: 0;
    overflow: hidden;
}

.banner-left {
    width: 100%;
    padding-top: 10px;
}

.banner-right {
    text-align: center;
    margin: 12px auto 6px auto;
}

.banner-title {
    font-family: 'decoder', monospace;
    font-size: 28px;
    color: #4d7cff;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    padding: 0;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 11px;
    color: #2a3a8a;
    letter-spacing: 3px;
    font-family: 'decoder', monospace;
    margin: 0 0 6px 0;
}

.banner-tagline {
    font-family: 'decoder', monospace;
    font-size: 11px;
    color: #3a5a99;
    font-style: italic;
    margin: 0;
}

.banner-clearfix {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
}

/* ---- CRT TV ---- */
.crt-housing {
    display: inline-block;
    background-color: #111118;
    border: 8px solid #1c1c28;
    border-radius: 10px;
    border-bottom: 14px solid #0a0a14;
    border-top: 10px solid #1a1a26;
    padding: 8px 12px 6px 12px;
}

.crt-bezel {
    background-color: #0a0a12;
    border: 4px solid #080810;
    border-radius: 4px;
    padding: 4px;
}

.crt-screen {
    width: 220px;
    height: 165px;
    background-color: #000818;
    border: 3px inset #0d0d1e;
    overflow: hidden;
    position: relative;
}

.crt-screen img {
    width: 220px;
    height: 165px;
    display: block;
}

.crt-controls {
    text-align: right;
    padding: 5px 0 2px 0;
}

.crt-knob {
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: #1a1a28;
    border: 2px inset #0d0d1a;
    border-radius: 50%;
    margin-left: 5px;
}

.crt-dial {
    display: inline-block;
    width: 18px;
    height: 11px;
    background-color: #151522;
    border: 2px inset #0d0d1a;
    margin-left: 5px;
    vertical-align: middle;
}

.crt-base-top {
    width: 70px;
    height: 8px;
    background-color: #141420;
    border: 1px solid #0a0a14;
    margin: 2px auto 0 auto;
}

.crt-base-bottom {
    width: 100px;
    height: 7px;
    background-color: #0f0f1c;
    border: 1px solid #080812;
    margin: 1px auto 0 auto;
}

/* ---- MARQUEE BAR ---- */
.marquee-bar {
    background-color: #030820;
    border-top: 1px solid #0a1e55;
    border-bottom: 1px solid #0a1e55;
    padding: 4px 0;
    overflow: hidden;
}

.marquee-bar marquee {
    color: #2a4acc;
    font-family: 'decoder', monospace;
    font-size: 11px;
    letter-spacing: 2px;
}

/* ---- NAVBAR ---- */
.navbar {
    background-color: #030820;
    border-top: 2px solid #1F51FF;
    border-bottom: 2px solid #1F51FF;
    padding: 4px;
    margin-bottom: 10px;
}

.navbar-inner {
    text-align: center;
    padding: 2px 0;
}

.navbar a {
    display: inline-block;
    color: #4d7cff;
    font-family: 'decoder', monospace;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 10px;
    margin: 2px 1px;
    border: 1px solid #0a1e55;
    text-decoration: none;
}

.navbar a:hover {
    color: #ffffff;
    background-color: #1F51FF;
    text-decoration: none;
    border-color: #1F51FF;
}

.navbar a.active {
    color: #ffffff;
    background-color: #0d2a88;
    border-color: #1F51FF;
    text-decoration: none;
}

/* ---- LAYOUT: MOBILE FIRST ---- */
.layout-container {
    width: 100%;
    overflow: hidden;
}

.main-content {
    width: 100%;
    padding: 0;
    margin-bottom: 12px;
}

.sidebar {
    width: 100%;
}

.layout-clearfix {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
}

/* ---- LAYOUT: DESKTOP ---- */
@media (min-width: 720px) {

    body {
        font-size: 12px;
        padding: 6px;
    }

    .banner-left {
        float: left;
        width: 400px;
        padding-top: 20px;
    }

    .banner-right {
        float: right;
        margin: 0 0 0 10px;
        text-align: left;
    }

    .banner-title {
        font-size: 32px;
    }

    .crt-screen {
        width: 290px;
        height: 216px;
    }

    .crt-screen img {
        width: 290px;
        height: 216px;
    }

    .crt-housing {
        padding: 10px 14px 8px 14px;
    }

    .navbar a {
        display: inline;
        margin: 0;
        padding: 4px 14px;
        border: none;
        border-right: 1px solid #0a1e55;
    }

    .navbar a:first-child {
        border-left: 1px solid #0a1e55;
    }

    .navbar a:hover {
        border-color: transparent;
    }

    .main-content {
        float: left;
        width: 64%;
        padding-right: 12px;
        margin-bottom: 0;
    }

    .sidebar {
        float: right;
        width: 34%;
    }

}

/* ---- CONTENT BOXES ---- */
.content-box {
    background-color: #030d1c;
    border: 1px solid #1F51FF;
    margin-bottom: 12px;
}

.content-box-header {
    background-color: #060e2a;
    border-bottom: 1px solid #1F51FF;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4d7cff;
    font-family: 'decoder', monospace;
    font-weight: bold;
}

.content-box-body {
    padding: 12px;
    line-height: 1.7;
}

/* ---- SIDEBAR BOXES ---- */
.sidebar-box {
    background-color: #020810;
    border: 1px solid #1F51FF;
    margin-bottom: 8px;
    width: 100%;
}

.sidebar-box-header {
    background-color: #04091e;
    border-bottom: 1px solid #1F51FF;
    padding: 4px 8px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4d7cff;
    font-weight: bold;
    font-family: 'decoder', monospace;
}

.sidebar-box-body {
    padding: 8px;
    font-size: 11px;
    line-height: 1.7;
    color: #8899cc;
}

.sidebar-box-body a {
    color: #4d7cff;
}

.sidebar-box-body a:hover {
    color: #00d4ff;
}

/* ---- HEADINGS ---- */
h1 {
    font-family: 'decoder', monospace;
    color: #4d7cff;
    font-size: 20px;
    border-bottom: 1px dotted #0a1e55;
    margin: 4px 0 12px 0;
    padding-bottom: 6px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-family: 'decoder', monospace;
    color: #3a62dd;
    font-size: 15px;
    margin: 12px 0 6px 0;
    letter-spacing: 2px;
}

h3 {
    font-family: 'decoder', monospace;
    color: #2a4acc;
    font-size: 11px;
    margin: 8px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin: 0 0 10px 0;
    line-height: 1.7;
}

/* ---- HORIZONTAL RULES ---- */
hr.divider {
    border: 0;
    border-top: 1px dashed #0a1e55;
    margin: 12px 0;
    color: #0a1e55;
}

hr.fancy {
    border: 0;
    border-top: 2px solid #0d2266;
    border-bottom: 1px solid #1F51FF;
    margin: 16px 0;
}

hr.thin {
    border: 0;
    border-top: 1px solid #060d28;
    margin: 6px 0;
}

/* ---- SCROLLABLE TABLES (mobile) ---- */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 8px;
}

/* ---- DATA TABLES ---- */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 480px;
}

.data-table th {
    background-color: #060e2a;
    color: #4d7cff;
    padding: 6px 10px;
    text-align: left;
    border: 1px solid #0a1e55;
    letter-spacing: 2px;
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'decoder', monospace;
}

.data-table td {
    padding: 6px 10px;
    border: 1px solid #080e24;
    vertical-align: top;
}

.data-table tr.alt td {
    background-color: #040b1a;
}

/* ---- NEWS / BLOG ---- */
.post-date {
    color: #2a3a8a;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2px;
    font-family: 'decoder', monospace;
}

.post-title {
    color: #4d7cff;
    font-size: 14px;
    font-family: 'decoder', monospace;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.news-entry {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #08123a;
}

.news-entry:last-child {
    border-bottom: none;
}

/* ---- HIT COUNTER ---- */
.hit-counter-wrap {
    text-align: center;
    margin: 6px 0;
}

.hit-counter {
    background-color: #000000;
    border: 2px inset #1a1a2e;
    color: #00ff55;
    font-family: 'decoder', monospace;
    font-size: 16px;
    letter-spacing: 4px;
    padding: 4px 10px;
    display: inline-block;
}

.hit-counter-label {
    font-size: 9px;
    color: #2a3a8a;
    letter-spacing: 1px;
    display: block;
    margin-top: 3px;
    font-family: 'decoder', monospace;
}

/* ---- GUESTBOOK ---- */
.guestbook-box {
    background-color: #030d1c;
    border: 1px dashed #1F51FF;
    padding: 8px;
    text-align: center;
    margin: 8px 0;
}

.guestbook-box a {
    color: #00d4ff;
    font-weight: bold;
    font-size: 12px;
    font-family: 'decoder', monospace;
}

/* ---- UNDER CONSTRUCTION ---- */
.under-construction {
    background-color: #100000;
    border: 2px dashed #ff4400;
    padding: 6px 10px;
    font-size: 11px;
    color: #ff7744;
    text-align: center;
    margin: 12px 0;
    letter-spacing: 1px;
    font-family: 'decoder', monospace;
}

/* ---- STREAMING BUTTONS ---- */
.streaming-section {
    margin: 10px 0 6px 0;
}

.streaming-label {
    font-size: 10px;
    color: #2a3a8a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-family: 'decoder', monospace;
}

.stream-btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 3px 3px 3px 0;
    font-family: 'decoder', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #1F51FF;
    color: #4d7cff;
    text-decoration: none;
    background-color: #020810;
}

.stream-btn:hover {
    background-color: #1F51FF;
    color: #ffffff;
    text-decoration: none;
}

.stream-btn:visited {
    color: #4d7cff;
}

/* ---- ALBUM LISTING ---- */
.album-block {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #0a1e55;
}

.album-block:last-child {
    border-bottom: none;
}

.album-cover-placeholder {
    width: 90px;
    height: 90px;
    background-color: #030d1c;
    border: 2px solid #1F51FF;
    float: left;
    margin: 0 14px 8px 0;
    text-align: center;
    font-size: 9px;
    color: #2a3a8a;
    padding-top: 30px;
    font-family: 'decoder', monospace;
    line-height: 1.5;
}

.album-info {
    overflow: hidden;
}

.album-title {
    font-family: 'decoder', monospace;
    font-size: 16px;
    color: #4d7cff;
    margin: 0 0 3px 0;
    letter-spacing: 2px;
}

.album-meta {
    font-size: 10px;
    color: #2a3a8a;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tracklist {
    list-style: none;
    padding: 0;
    margin: 6px 0;
}

.tracklist li {
    padding: 3px 0;
    border-bottom: 1px solid #08102a;
    font-size: 11px;
    color: #8899cc;
    font-family: 'decoder', monospace;
}

.track-num {
    color: #1a2a66;
    margin-right: 8px;
    font-family: 'decoder', monospace;
}

.clearfix {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
}

/* ---- MEMBER BIOS ---- */
.member-block {
    margin-bottom: 16px;
    padding: 10px;
    background-color: #020810;
    border-left: 3px solid #1F51FF;
    border-bottom: 1px solid #060d28;
    overflow: hidden;
}

.member-photo-placeholder {
    width: 70px;
    height: 80px;
    background-color: #030d1c;
    border: 2px solid #1F51FF;
    float: left;
    margin: 0 14px 4px 0;
    text-align: center;
    font-size: 8px;
    color: #1a2a66;
    padding-top: 28px;
    font-family: 'decoder', monospace;
    line-height: 1.5;
}

.member-name {
    color: #4d7cff;
    font-size: 14px;
    font-family: 'decoder', monospace;
    margin: 0 0 3px 0;
    letter-spacing: 3px;
}

.member-role {
    font-size: 9px;
    color: #2a3a8a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'decoder', monospace;
}

/* ---- MERCH ---- */
.merch-note {
    font-size: 10px;
    color: #2a3a8a;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-style: italic;
}

.availability-yes {
    color: #44ff88;
    font-weight: bold;
}

.availability-low {
    color: #ffcc00;
    font-weight: bold;
}

.availability-sold {
    color: #ff4444;
    font-weight: bold;
    text-transform: uppercase;
}

/* ---- CONTACT ---- */
.contact-block {
    background-color: #020810;
    border: 1px dashed #1F51FF;
    padding: 12px;
    margin-bottom: 14px;
}

.contact-label {
    color: #2a4acc;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 4px;
    font-family: 'decoder', monospace;
}

/* ---- NEW TAG ---- */
.new-tag {
    background-color: #1F51FF;
    color: #ffffff;
    font-size: 8px;
    padding: 2px 5px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'decoder', monospace;
    vertical-align: middle;
}

/* ---- STAR BULLET ---- */
.star-bullet {
    color: #1a2a66;
    margin-right: 4px;
}

/* ---- NOW PLAYING ---- */
.now-playing-title {
    color: #00d4ff;
    font-style: italic;
    font-size: 11px;
    font-family: 'decoder', monospace;
}

/* ---- BLOCKQUOTE ---- */
blockquote {
    border-left: 3px solid #1F51FF;
    margin: 10px 0 10px 8px;
    padding-left: 12px;
    color: #3a5a99;
    font-style: italic;
}

/* ---- PRE ---- */
pre {
    font-family: 'decoder', monospace;
    font-size: 11px;
    color: #2a4acc;
    line-height: 1.5;
    margin: 8px 0;
}

/* ---- FOOTER ---- */
.footer {
    background-color: #020810;
    border-top: 2px solid #0a1e55;
    padding: 10px;
    text-align: center;
    margin-top: 12px;
    font-size: 10px;
    color: #1a2a66;
    letter-spacing: 1px;
    line-height: 2.0;
    font-family: 'decoder', monospace;
    clear: both;
}

.footer a {
    color: #2a3a8a;
}

.footer-badges {
    margin: 6px 0 0 0;
}

.badge {
    display: inline-block;
    background-color: #020810;
    border: 1px solid #0a1e55;
    color: #1a2a66;
    font-size: 8px;
    padding: 2px 7px;
    margin: 0 2px;
    letter-spacing: 1px;
    font-family: 'decoder', monospace;
    text-transform: uppercase;
}

/* ---- INLINE COLOR OVERRIDES (for old inline styles) ---- */
.blue-text { color: #4d7cff; }
.muted-text { color: #2a3a8a; }
.cyan-text { color: #00d4ff; }
.green-text { color: #44ff88; }
