:root {
            --primary: #6e00ff;
            --secondary: #ff00a0;
            --accent: #00f0ff;
            --dark: #0a0a12;
            --light: #e0e0ff;
            --text: #ffffff;
            --bg: #12121a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-line {
            width: 25px;
            height: 2px;
            background-color: var(--accent);
            transition: all 0.3s ease;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--accent);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .text-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .text-content h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--accent);
        }

        .text-content h3 {
            font-size: 20px;
            margin: 25px 0 10px;
            color: var(--light);
        }

        .text-content p, .text-content ul {
            margin-bottom: 20px;
        }

        .text-content ul {
            padding-left: 20px;
        }

        .text-content li {
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--dark);
            padding: 50px 0 20px;
            border-top: 1px solid var(--primary);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-links h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer {
            font-size: 12px;
            opacity: 0.7;
            margin-top: 30px;
            padding: 15px;
            background-color: rgba(10, 10, 18, 0.5);
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid var(--primary);
            }

            .nav-links.active {
                display: flex;
            }

            .burger {
                display: flex;
            }

            .burger.active .burger-line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .burger.active .burger-line:nth-child(2) {
                opacity: 0;
            }

            .burger.active .burger-line:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .section-title {
                font-size: 30px;
            }
        }

