@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #40E0D0;
            --accent-color: #FF69B4;
            --text-color: #FFFFFF;
            --bg-color: #0d011f;
            --card-bg: #1a033b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 6rem;
        }
        
        header {
            width: 100%;
            background-color: rgba(13, 1, 31, 0.8);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-shadow: 0 0 10px var(--secondary-color);
            transition: color 0.3s;
        }

        .logo:hover {
            color: var(--accent-color);
        }

        nav {
            display: none;
            flex-direction: column;
            width: 100%;
            text-align: center;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(13, 1, 31, 0.95);
            padding-bottom: 2rem;
            animation: slideIn 0.5s ease-out;
        }

        nav.open {
            display: flex;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 1rem 0;
            transition: color 0.3s, transform 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        nav a:last-child {
            border-bottom: none;
        }

        nav a:hover {
            color: var(--secondary-color);
            transform: scale(1.05);
        }

        .burger-menu {
            display: block;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-color);
            margin: 5px 0;
            transition: 0.4s;
        }

        .burger-menu.open span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.open span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.open span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            text-shadow: 0 0 15px var(--secondary-color);
            text-align: center;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: #ccc;
        }
        
        ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.5rem;
            color: #ccc;
        }

        footer {
            background-color: #0d011f;
            padding: 2rem 1rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .disclaimer a {
            color: #aaa;
            text-decoration: underline;
        }

        /* Media Queries */
        @media (min-width: 768px) {
            nav {
                display: flex;
                flex-direction: row;
                position: static;
                background-color: transparent;
                padding-bottom: 0;
                animation: none;
                width: unset;
            }

            nav a {
                padding: 0.5rem 1rem;
                border-bottom: none;
            }

            .burger-menu {
                display: none;
            }
            
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
        }

