* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
    background: url('http://314gaming.com/images/atile07.jpg') repeat, #1a1a2e; /* Brushed metal texture */
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    z-index: -1;
    animation: glowPulse 10s infinite alternate;
}

.navbar {
    background: linear-gradient(to bottom, #2e2e4e, #1a1a2e);
    padding: 1rem;
    border-bottom: 2px solid #00ccff;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-item {
    position: relative;
    margin: 0 20px;
}

.nav-link {
    color: #00ccff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #2e2e4e, #1a1a2e);
    border: 1px solid #00ccff;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.8);
}

.nav-link:hover {
    background: #00ccff;
    color: #1a1a2e;
    box-shadow: 0 0 15px #00ccff;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(46, 46, 78, 0.5); /* Translucent */
    backdrop-filter: blur(5px); /* Glass effect */
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #00ccff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown li a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    opacity: 0.5;
    background: #00ccff;
    color: #1a1a2e;
    text-shadow: 0 0 5px #00ccff;
}

.nav-item:hover .dropdown {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(0);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Offset for fixed nav */
}

.hero h1 {
    font-size: 4rem;
    color: #00ccff;
    text-shadow: 0 0 20px #00ccff, 0 0 40px #00ccff;
    animation: neonFlicker 2s infinite alternate;
}

.hero p {
    font-size: 1.5rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Animations */
@keyframes glowPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}