/* --- GLOBAL SETTINGS --- */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    background-color: #050510; /* Deep dark blue */
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    color: #aaddff;
    font-family: 'VT323', monospace; /* Retro terminal font */
    font-size: 20px;
    margin: 0;
    padding: 20px;
}

a { text-decoration: none; color: #ff77ff; transition: 0.2s; }
a:hover { color: #ffffff; background: #ff00ff; text-shadow: 0 0 5px #ff00ff; }

img { border: 2px solid #4466aa; image-rendering: pixelated; }

/* --- LAYOUT TABLE --- */
.site-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(0, 0, 50, 0.85);
    border: 4px double #4466aa;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
}

header {
    text-align: center;
    border-bottom: 2px solid #4466aa;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.logo-area h1 {
    font-size: 60px;
    margin: 0;
    color: #fff;
    text-shadow: 4px 4px #ff00ff;
    letter-spacing: 5px;
}

.marquee-bar {
    background: #ff00ff;
    color: white;
    padding: 5px;
    margin-top: 10px;
    font-size: 18px;
    border: 2px solid #fff;
}

/* --- THE 3 COLUMNS --- */
.main-layout {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Sidebars */
.sidebar-left, .sidebar-right {
    width: 220px;
    flex-shrink: 0;
}

/* Middle Content */
.content-main {
    flex-grow: 1;
    background: #000033;
    border: 2px solid #4466aa;
    padding: 20px;
    min-height: 400px;
}

/* --- MODULES --- */
.box {
    border: 1px dashed #4466aa;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
}

.box-title {
    background: #4466aa;
    color: white;
    padding: 2px 5px;
    margin: -10px -10px 10px -10px;
    font-size: 18px;
    text-transform: uppercase;
}

ul.nav-list { list-style: none; padding: 0; margin: 0; }
ul.nav-list li { margin-bottom: 5px; padding-left: 20px; position: relative; }
/* Using emoji as bullets */
ul.nav-list li::before {
    content: '★'; 
    position: absolute; 
    left: 0; color: #ffff00; 
}

/* --- CONTENT STYLES --- */
h2 { margin-top: 0; color: #ffff00; border-bottom: 1px dotted #ffff00; }
.update-log { border-left: 2px solid #ffff00; padding-left: 10px; margin-bottom: 20px; }
.date { color: #ff77ff; font-weight: bold; }

/* --- FOOTER --- */
footer {
    text-align: center;
    margin-top: 20px;
    border-top: 2px solid #4466aa;
    padding-top: 10px;
    font-size: 16px;
}

/* --- MOBILE FIX --- */
@media (max-width: 800px) {
    .main-layout { flex-direction: column; }
    .sidebar-left, .sidebar-right { width: 100%; }
}