/* General Styles */
body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(8px);
    z-index: 1000;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    padding: 10px 20px;
    transition: 0.3s;
    border-radius: 5px;
    font-weight: bold;
}
nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Content Styling */
.content {
    position: absolute;
    top: 100px;
    width: 100%;
}