/* Enhanced Header Styles */
#header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60, 160, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

#header nav {
    padding-right: 0;
}

#header nav a[href="#menu"] {
    padding: 0.5em 1.25em;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

#header nav a[href="#menu"]:hover {
    color: #3ca0ff;
}

#header nav a[href="#menu"]::after {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5em;
    color: inherit;
}

#header .logo {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

#header .logo:hover {
    color: #3ca0ff;
    text-shadow: 0 0 10px rgba(60, 160, 255, 0.3);
}

#header .logo span {
    color: #3ca0ff;
    text-shadow: 0 0 10px rgba(60, 160, 255, 0.3);
}

#header .logo:hover span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Enhanced Menu Styles */
#menu {
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(60, 160, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

#menu .links {
    border-bottom: 1px solid rgba(60, 160, 255, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu .links a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.75em 2em;
    transition: all 0.3s ease;
}

#menu .links a i {
    margin-left: 8px;
    color: #3ca0ff;
    transition: transform 0.3s ease;
}

#menu .links a:hover i {
    transform: scale(1.2);
}

#menu .links a[target="_blank"] {
    display: flex;
    align-items: center;
}

#menu .links a[target="_blank"]:after {
    content: '';
    margin-left: 8px;
    opacity: 0.7;
}

#menu .links a:hover {
    background: rgba(60, 160, 255, 0.05);
    padding-left: 2.5em;
    color: #3ca0ff;
}

/* Enhanced Footer Styles */
#footer {
    background: linear-gradient(to bottom, transparent, rgba(10, 25, 47, 0.95)) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(60, 160, 255, 0.1) !important;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5) !important;
    padding: 2rem 0 !important;
    position: relative !important;
    color: #fff !important;
}

#footer .contact-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    padding: 0 20px !important;
    list-style: none !important;
    margin: 0 !important;
}

#footer .contact-icons li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

#footer .contact-icons li a {
    position: relative !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    font-size: 1em !important;
}

#footer .contact-icons li a:hover {
    background: rgba(60, 160, 255, 0.05) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
    color: #3ca0ff !important;
}

#footer .contact-icons li a i {
    margin-right: 8px !important;
    transition: transform 0.3s ease !important;
    color: #3ca0ff !important;
}

#footer .contact-icons li a:hover i {
    transform: scale(1.2) !important;
}

#footer .copyright {
    margin-top: 20px !important;
    color: #8892b0 !important;
    font-size: 0.9em !important;
    letter-spacing: 1px !important;
    text-align: center !important;
}

/* Neon Destiny Footer */
.neon-destiny-footer {
    background: linear-gradient(to bottom, #000000, #0a192f) !important;
    padding: 15px !important;
    text-align: center !important;
    border-top: 1px solid rgba(60, 160, 255, 0.1) !important;
}

.neon-destiny-footer a {
    color: #3ca0ff !important;
    text-decoration: none !important;
    font-size: 18px !important;
    text-shadow: 0 0 10px #3ca0ff, 0 0 20px #3ca0ff !important;
    position: relative !important;
    display: inline-block !important;
    padding: 5px 15px !important;
    transition: all 0.3s ease !important;
}

.neon-destiny-footer a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(60, 160, 255, 0.1) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.3s ease !important;
}

.neon-destiny-footer a:hover::before {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}
