:root {
            --primary-color: #00ffff;
            --secondary-color: #ff00ff;
            --background-color: #1a1a2e;
            --text-color: #f0f0f0;
            --accent-color: #ff8c00;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(5px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        nav ul a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav ul a:hover {
            color: var(--primary-color);
        }

        nav ul a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 101;
        }

        .burger-menu span {
            height: 3px;
            width: 25px;
            background-color: var(--text-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);
        }

        .mobile-nav {
            display: none;
        }

        main {
            padding-top: var(--header-height);
            padding-bottom: 50px;
        }

        section {
            padding: 50px 0;
        }

        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
            padding-top: 50px;
        }
        
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        p, ul {
            margin-bottom: 20px;
        }

        ul {
            padding-left: 40px;
        }

        li {
            margin-bottom: 10px;
        }
        
        footer {
            background-color: #0d0a21;
            color: #ccc;
            padding: 40px 0;
            font-size: 0.9rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: 1px 1px var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-contact p {
            margin: 5px 0;
        }

        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }
        
        @media (max-width: 900px) {
            header {
                padding: 0 20px;
            }
            
            nav ul {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .mobile-nav {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(5px);
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
                z-index: 99;
                padding-bottom: 20px;
            }
            
            .mobile-nav.active {
                transform: translateX(0);
            }

            .mobile-nav li {
                padding: 15px 40px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-nav li a {
                font-size: 1.2rem;
                display: block;
            }

            h1 {
                font-size: 2.5rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links ul {
                flex-direction: column;
            }
        }

