/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background: linear-gradient(90deg, #ff00ff, #7700ff, #00ffff);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 0, 255, 0.5);
}

h1 {
    font-size: 36px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(255, 0, 255, 0.8);
}

/* Navigation Styling */
nav {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.3);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 10px;
}

nav a {
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    color: #ff00ff;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 8px rgba(255, 0, 255, 0.6);
}

nav a:hover {
    background: #ff00ff;
    color: #0a0a0a;
    box-shadow: 0px 0px 15px rgba(255, 0, 255, 0.9);
}

/* Sections */
section {
    margin: 40px auto;
    padding: 20px;
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.4);
}

h2 {
    font-size: 28px;
    color: #00ffff;
    text-shadow: 0px 0px 10px rgba(0, 255, 255, 0.8);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #7700ff, #ff00ff);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 0, 255, 0.5);
}

footer p {
    font-size: 14px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 5px auto;
        width: 80%;
    }
}
