@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&display=swap');

        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #00FFFF;
            --accent-color: #FF8C00;
            --text-color: #E0E0E0;
            --bg-color: #1a1a2e;
            --card-bg: #2e2e4e;
            --font-main: 'Montserrat', sans-serif;
            --font-display: 'Orbitron', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        h1, h2, h3 {
            font-family: var(--font-display);
            color: var(--secondary-color);
            text-shadow: 2px 2px var(--primary-color);
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
            border-bottom: 2px solid var(--primary-color);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            font-size: 1.1rem;
            font-weight: 700;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: 2px solid var(--primary-color);
        }

        h1 {
            margin-bottom: 2rem;
            text-align: center;
        }

        h2 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        p, ul {
            margin-bottom: 1.5rem;
        }

        ul {
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }
        
        footer {
            background-color: var(--bg-color);
            padding: 3rem 5%;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }

        .footer-logo {
            font-size: 2rem;
            font-family: var(--font-display);
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--card-bg);
            text-align: center;
        }

        @media (max-width: 900px) {
            .nav-menu {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(26, 26, 46, 0.95);
                padding-top: 6rem;
                transition: right 0.5s ease;
                align-items: center;
                border-left: 2px solid var(--accent-color);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 1.5rem 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
            }

            .burger-menu {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-section h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

