/* General 90s Reset */
body {
    background-color: #222; /* Dark background for that gamer vibe */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); 
    color: #e0e0e0;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* The Main Container that forces Sidebar to stay Left */
.container {
    display: flex;
    flex-direction: row; /* Forces side-by-side layout */
    min-height: 100vh;
    width: 100vw;
}

/* THE SIDEBAR (Your Navbar) */
.sidebar {
    width: 180px;
    min-width: 180px;
    background-color: #4a4a4a; /* Classic grey plastic */
    border-right: 5px outset #ffffff; /* 3D Bevel effect */
    padding: 15px;
    height: 100vh;
    position: sticky; /* Keeps it locked while you scroll the content */
    top: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0px 15px rgba(0,0,0,0.5);
}

.sidebar h2 {
    font-size: 1.2rem;
    color: #00ff00;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px inset #fff;
    padding-bottom: 5px;
}

.sidebar a {
    display: block;
    background: #333;
    color: #00ffff;
    padding: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    border: 2px outset #666;
    font-size: 0.9rem;
    text-align: center;
}

.sidebar a:hover {
    background: #00ffff;
    color: #000;
    border: 2px inset #fff;
}

/* THE MAIN CONTENT AREA */
.content {
    flex-grow: 1;
    padding: 30px;
    background-color: #000033; /* Deep space blue */
    border-left: 2px solid #000;
}

h1 {
    font-family: 'Impact', sans-serif;
    color: #ff00ff;
    text-shadow: 3px 3px #000, -1px -1px 0 #fff;
    letter-spacing: 2px;
    text-align: center;
}

/* 90s Button Effect */
.btn-90s {
    padding: 10px;
    background: #c0c0c0;
    border: 3px outset #fff;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

@keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    .floating-logo {
        animation: float 3s ease-in-out infinite;
    }