/* /css/style.css */

:root {
    --bitverse-yellow: #fde802;
    --bitverse-red: #d11f1f;
    --bitverse-green: #28a745;
    --bitverse-grey: #6c757d;
    --bitverse-text: #e0e0e0;
    --bitverse-border: #6b4329;
    --bitverse-bg: #1a1a1a;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', cursive;
    background-color: #000;
    color: var(--bitverse-text);
    background-image: url('/assets/dungeon_floor.png');
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

/* --- Header Styles --- */
#header-placeholder {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid var(--bitverse-border);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--bitverse-text);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--bitverse-yellow);
}

/* --- Main Content Styles --- */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px 20px; /* Add padding to avoid overlap with fixed header/footer */
}

/* --- Footer Styles --- */
#footer-placeholder {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 2px solid var(--bitverse-border);
    padding: 20px;
    box-sizing: border-box;
}

.footer-nav {
    font-family: sans-serif;
    font-size: 12px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--bitverse-grey);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--bitverse-text);
}

.footer-copyright {
    color: var(--bitverse-border);
}