/* CRIMSON RED AERO / COMIC SANS RETRO THEME */

body {
    background-color: #120303; /* Deep dark crimson-black */
    background-image: linear-gradient(to bottom, #1f0808, #080202);
    color: #f2e6e6;
    font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    margin: 0;
    padding: 30px;
    font-size: 14px;
    background-attachment: fixed;
}

/* MAIN CONTAINER (Red Glass Panel Style) */
#main-container {
    width: 800px;
    margin: 0 auto;
    background-color: rgba(30, 8, 8, 0.88); /* Semi-transparent red glass */
    border: 1px solid rgba(255, 100, 100, 0.25);
    border-radius: 8px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.8), inset 0px 1px 0px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* HEADER WITH GLOSSY RED GRADIENT */
#site-header {
    background: linear-gradient(to bottom, #a81c1c 0%, #660d0d 50%, #3d0505 51%, #1f0202 100%);
    border-bottom: 1px solid #d93838;
    padding: 15px;
    text-align: center;
}

.logo {
    color: #ffffff;
    font-size: 30px;
    margin: 0;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 10px rgba(255, 80, 80, 0.7);
    letter-spacing: 1px;
    font-weight: bold;
}

.news-ticker {
    background: linear-gradient(to bottom, #801111, #420707);
    color: #ffb3b3;
    font-weight: bold;
    padding: 5px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

/* NAVIGATION TABS (Glossy Red Buttons) */
.retro-nav {
    background: linear-gradient(to bottom, #4a0f0f, #260505);
    padding: 6px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.retro-nav a {
    color: #ffcccc;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
    padding: 5px 12px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    display: inline-block;
}

.retro-nav a:hover {
    color: #ffffff;
    background: linear-gradient(to bottom, #e62e2e, #990000);
    border-color: #ff6666;
    box-shadow: 0 0 10px rgba(255, 50, 50, 0.9);
}

/* CONTENT LAYOUT */
.content-grid {
    display: flex;
    padding: 12px;
    gap: 12px;
}

.left-column { flex: 3; }
.right-column { flex: 1; }

/* GLOSSY BOXES */
.retro-box {
    background: linear-gradient(to bottom, rgba(45, 12, 12, 0.7), rgba(20, 4, 4, 0.9));
    border: 1px solid rgba(255, 100, 100, 0.15);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.08);
}

.retro-box h2, .retro-box h3 {
    color: #ff6666;
    border-bottom: 1px solid rgba(255, 100, 100, 0.15);
    margin-top: 0;
    padding-bottom: 6px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GAME SCREEN PLACEHOLDER */
.game-screen {
    background-color: #080202;
    border: 1px solid #571212;
    border-radius: 4px;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.9);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a34747;
    font-weight: bold;
}

/* FOOTER */
#site-footer {
    text-align: center;
    background: linear-gradient(to bottom, #260505, #0d0101);
    border-top: 1px solid rgba(255, 100, 100, 0.15);
    padding: 10px;
    font-size: 11px;
    color: #9e6161;
}

/* FULL-WIDTH CONTENT AREA (No Sidebar) */
.content-single {
    padding: 12px;
}
/* SCRATCH IFRAME FIX */
.game-screen iframe {
    display: block;
    margin: 0 auto;
    border: 2px inset #571212;
    border-radius: 4px;
    background-color: #000;
}