html, body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #39ff14;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
}

/* Optional: fake starfield vibe */
body {
    background-color: #000000;
    background-image:
        radial-gradient(#ffffff 1px, transparent 1px),
        radial-gradient(#a020f0 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
}

/* Top goo/slime strip placeholder */
.top-drip {
    height: 34px;
    background: #39ff14;
    border-bottom: 3px solid #1a8f00;
    box-shadow: 0 0 12px #39ff14;
}

/* Main 3-column layout */
.page-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.sidebar {
    width: 230px;
    padding: 12px;
}

.main-content {
    padding: 14px;
    text-align: center;
}

/* Generic neon box */
.side-box,
.news-box,
.intro-box,
.bottom-counter {
    background: #050505;
    border: 2px solid #b000ff;
    color: #39ff14;
    padding: 10px;
    margin-bottom: 14px;
    box-shadow: 0 0 8px #5f008f;
}

.box-title,
.section-title {
    color: #ff00ff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-shadow: 0 0 6px #ff00ff;
}

.small-text {
    font-size: 12px;
    text-align: center;
}

/* Counter style */
.counter-box {
    background: #001600;
    border: 2px inset #39ff14;
    color: #39ff14;
    font-size: 28px;
    letter-spacing: 5px;
    text-align: center;
    padding: 5px;
    font-family: "Courier New", Courier, monospace;
}

/* Navigation */
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 6px 0;
}

.nav-list a {
    color: #39ff14;
    text-decoration: none;
}

.nav-list a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

/* Center title area */
.site-title-area {
    margin-bottom: 20px;
}

.welcome-text {
    color: #b000ff;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 0 10px #b000ff;
}

.main-logo-text {
    color: #39ff14;
    font-size: 72px;
    font-weight: bold;
    line-height: 80px;
    text-shadow:
        2px 2px 0 #1a8f00,
        0 0 18px #39ff14;
}

.tagline {
    color: #dddddd;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Main content boxes */
.intro-box {
    width: 70%;
    margin: 0 auto 18px auto;
    color: #dddddd;
    line-height: 22px;
    text-align: left;
}

.news-box {
    width: 75%;
    margin: 0 auto 14px auto;
    text-align: left;
    color: #dddddd;
}

.new-label {
    color: #ff0000;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

/* Button */
.button-row {
    margin: 18px 0;
}

.retro-button {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    background: #c0c0c0;
    border: 3px outset #ffffff;
    padding: 6px 14px;
    cursor: pointer;
}

.retro-button:active {
    border: 3px inset #808080;
}

/* Fake badges */
.badge-row {
    margin: 18px auto;
    text-align: center;
}

.fake-badge {
    display: inline-block;
    background: #eeeeee;
    color: #000000;
    border: 2px outset #ffffff;
    padding: 8px 12px;
    margin: 4px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
}

.badge-grid {
    text-align: center;
}

.fake-square-badge {
    display: inline-block;
    width: 78px;
    height: 48px;
    line-height: 48px;
    margin: 5px;
    background: #dddddd;
    color: #000000;
    border: 2px outset #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
}

/* Warning panel */
.warning-box {
    text-align: center;
}

.warning-text {
    color: #ff6600;
    font-size: 32px;
    text-shadow: 0 0 8px #ff0000;
}

.big-stat {
    color: #ff3300;
    font-size: 38px;
    text-shadow: 0 0 8px #ff3300;
}

.big-stat-alt {
    color: #00ccff;
    font-size: 34px;
    text-shadow: 0 0 8px #00ccff;
}

/* Construction panels */
.construction-box {
    background: #ffcc00;
    color: #000000;
    border: 6px dashed #000000;
    padding: 12px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 14px;
}

.construction-title {
    font-size: 24px;
}

.construction-subtitle {
    font-size: 14px;
}

/* Status */
.online-text {
    color: #39ff14;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
.footer-text {
    color: #cccccc;
    text-align: center;
    margin-top: 20px;
}

.bottom-counter {
    width: 60%;
    margin: 18px auto;
    font-size: 13px;
    color: #dddddd;
}

/* Old monitor sizes */
@media screen and (max-width: 900px) {
    .sidebar {
        width: 180px;
        font-size: 12px;
    }

    .main-logo-text {
        font-size: 48px;
        line-height: 56px;
    }

    .intro-box,
    .news-box,
    .bottom-counter {
        width: 90%;
    }
}