/* Body set to black */
body {
    background: #000;
    color: white;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Original Navbar Structure */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #000;
    border-bottom: 2px solid #222;
}

/* LOGO FIXED TO ORIGINAL SIZE */
.logo-img {
    height: 120px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

/* NEON BUTTONS - Navigation */
.nav-links li a {
    padding: 10px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s;
}

/* Red Neon - Odd buttons */
.nav-links li:nth-child(odd) a {
    color: #ff003c;
    border-color: #ff003c;
    animation: neon-red 1.5s infinite alternate;
}

/* Blue Neon - Even buttons */
.nav-links li:nth-child(even) a {
    color: #00f3ff;
    border-color: #00f3ff;
    animation: neon-blue 1.5s infinite alternate;
}

/* NEON RED TITLE, SLOGAN, AND BUTTON TEXT */
.neon-red-text {
    color: #ff003c !important;
    animation: neon-red-glow 1.5s infinite alternate;
}

@keyframes neon-red {
    from { text-shadow: 0 0 5px #ff003c; box-shadow: 0 0 5px #ff003c; }
    to { text-shadow: 0 0 15px #ff003c; box-shadow: 0 0 15px #ff003c; }
}

@keyframes neon-blue {
    from { text-shadow: 0 0 5px #00f3ff; box-shadow: 0 0 5px #00f3ff; }
    to { text-shadow: 0 0 15px #00f3ff; box-shadow: 0 0 15px #00f3ff; }
}

@keyframes neon-red-glow {
    from { text-shadow: 0 0 5px #ff003c, 0 0 10px #ff003c; }
    to { text-shadow: 0 0 20px #ff003c, 0 0 30px #ff003c; }
}

/* Original Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #000;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}
