@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Exo+2:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f0030;
    --secondary: #170742;
    --accent: #00FFFF;
    --accent2: #FF00FF; 
    --text-light: #ffffff;
    --text-dark: #333333;
    --background: #080016;
    --card-bg: #120030;
    --neon-glow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.4);
    --neon-glow-purple: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.4);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--background);
    color: var(--text-light);
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(8, 0, 22, 0.95), rgba(8, 0, 22, 0.95)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(128, 0, 255, 0.05)" stroke-width="0.5"/></svg>');
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 0, 48, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
    animation: pulseLogo 3s infinite alternate;
}

@keyframes pulseLogo {
    0% { filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8)); }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

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

.nav-links li a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
    box-shadow: var(--neon-glow);
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-links li a:hover::before {
    width: 80%;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: var(--neon-glow);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: rgba(15, 0, 48, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(0, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 15px;
        font-size: 18px;
        border-radius: 0;
    }

    .nav-links li a::before {
        display: none;
    }

    .nav-links li a:hover {
        background-color: rgba(0, 255, 255, 0.1);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: var(--accent);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--accent);
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}
  
.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    background-color: var(--accent);
    color: var(--secondary);
}

.floating-button i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 40px 5% 20px;
    position: relative;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}
  
.footer-brand {
    display: flex;
    align-items: center;
}
  
.footer-logo {
    height: 35px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}
  
.footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: var(--neon-glow);
}
  
.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
  
.footer-nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
}
  
.footer-nav ul li a:hover {
    color: var(--accent);
}

.footer-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-nav ul li a:hover::after {
    width: 100%;
}
  
.footer-social {
    display: flex;
    gap: 20px;
}
  
.footer-social .social-link {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}
  
.footer-social .social-link:hover {
    color: var(--accent);
    text-shadow: var(--neon-glow);
}

.footer-social .social-link i {
    margin-right: 5px;
}
  
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
  
/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
}
  