/* base.css */

/* Global Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: white;
}

/* Body and Theme */
body {
    background-color: #1f1347;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
}

body.dark-mode {
    background-color: #0a0617;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 0;
}

/* Menu/Nav styles (The original nav is now hidden, but keeping the glow effect and base nav styles) */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: rgba(10, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

nav::before {
    content: "";
    position: absolute;
    inset: 10% -20% 10% -20%;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(circle, #ff00ff, #00ffff, transparent);
    background-size: 300% 300%;
    animation: glow 5s ease-in-out infinite;
}

@keyframes glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav-button:hover {
    background-color: #333333;
}


/* Responsive layout */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    /* Hide desktop nav */
    nav {
        display: none !important;
    }
}