:root {
    /* Background images */
    --body-bg-image: url('/images/bluespace.gif');

    /* Space color palette (light → dark) */
    --space0: #bfc9e7;  /* lightest */
    --space1: #4a70e2;
    --space2: #0137d9;
    --space3: #1b388f;
    --space4: #042178;
    --space5: #001248;
    --space6: #010a28;
    --space7: #00071b;  /* darkest */
}

/* ────────────────────────────────── FONTS ────────────────────────────────── */
@font-face {
    font-family: "Arcade";
    src: url('/style/fonts/JMH Cthulhumbus Arcade.otf') format("opentype");
}
@font-face {
    font-family: "Dos";
    src: url('/style/fonts/Perfect DOS VGA 437.ttf') format("truetype");
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Dos', monospace;
    font-size: 1.25rem;
    background: var(--space7) var(--body-bg-image) repeat;
    color: white;
}

/* ─────────────────────────────── LAYOUT CONTAINER ─────────────────────────────── */
#container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ────────────────────────────────── LINKS ────────────────────────────────── */
#container a {
    color: var(--space0);
    font-weight: bold;
    text-decoration: none;
}
#container a:hover {
    color: var(--space2);
    text-decoration: underline;
}

/* ────────────────────────────────── HEADER ────────────────────────────────── */
#headerArea {
    background: var(--space6);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

#header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

#header img {
    height: 120px;
    transition: all 0.4s ease;
}

#header a strong {
    font-size: 2rem;
    color: white;
}

/* Spinning logo on hover */
#header img:hover {
    animation: spin 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    border: 2px solid var(--space1);
    border-radius: 24px;
}

@keyframes spin {
    from { 
        transform: rotate(0deg);
        box-shadow: 0 0 5px var(--space0), 0 0 10px var(--space2), 0 0 18px var(--space0);
    }
    to { 
        transform: rotate(360deg);
        box-shadow: 0 0 5px var(--space0), 0 0 10px var(--space2), 0 0 18px var(--space0);
    }
}

/* ─────────────────────────────── MAIN FLEX LAYOUT ───────────────────────────── */
#flex {
    display: flex;
    flex: 1;
    gap: 15px;
}

/* ───────────────────────────────── SIDEBAR ───────────────────────────────── */
sideBar {
    width: 25%;
    max-width: 300px;
}

.navbox {
    background: var(--space7);
    border: 2px solid var(--space1);
    border-radius: 8px;
    padding: 15px;
    position: sticky;
    top: 15px;
}

#navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#navbar li {
    margin: 10px 0;
}

#navbar a {
    color: var(--space0);
    font-weight: bold;
    text-decoration: none;
}

#navbar a:hover {
    color: var(--space1);
    text-decoration: underline;
    text-shadow: 0 0 5px var(--space3), 0 0 10px var(--space2);
}

/* Prime ticker */
#prime-ticker {
    font-family: 'Dos', monospace;
    color: var(--space0);
    margin-top: 15px;
    text-align: center;
}

#prime-number {
    color: var(--space2);
    font-weight: bold;
}

/* ───────────────────────────────── MAIN CONTENT ───────────────────────────────── */
main {
    flex: 1;
    background: var(--space5);
    padding: 20px;
    border-radius: 8px;
}

/* ───────────────────────────────── FOOTER ───────────────────────────────── */
footer {
    background: var(--space6);
    padding: 15px;
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
}

footer marquee {
    font-family: 'Arcade', sans-serif;
    font-size: 1rem;
}

.social-planets {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.planet {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--space4);
    transition: transform 0.3s;
}

.planet:hover {
    transform: rotate(360deg) scale(1.2);
}

.github   { background: var(--space3) url('/images/ball.png') center/cover; }
.twitter  { background: var(--space2) url('/images/twitter-icon.png') center/cover; }

/* ───────────────────────────────── HEADINGS ───────────────────────────────── */
h1 {
    font-family: 'Arcade', sans-serif;
    color: white;
    font-size: 2.5rem;
}

h2, h3 {
    font-family: 'Arcade', sans-serif;
    color: var(--space1);
}

strong {
    color: var(--space1);
}

/* ─────────────────────────────── UTILITY CLASSES ────────────────────────────── */
.box {
    background: var(--space7);
    border: 1px solid var(--space1);
    padding: 15px;
    border-radius: 8px;
}

.zoom {
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
}

.zoom:hover {
    transform: scale(2);
}

button {
    background: var(--space6);
    color: white;
    font-family: 'Arcade', sans-serif;
    padding: 8px 16px;
    border: 1px solid var(--space1);
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: var(--space3);
}

/* ─────────────────────────────── MOBILE LAYOUT ────────────────────────────── */
@media (max-width: 1000px) {
    #container { width: 100%; }

    #flex {
        flex-direction: column;
        gap: 10px;
    }

    main    { order: 2; }
    sideBar { 
        width: 100%;
        max-width: none;
        order: 0;
    }

    .navbox { position: static; }

    #navbar ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        text-align: center;
    }

    #navbar ul ul { display: none; }

    #header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    #header img { height: 80px; }
}