:root {
            --bg-color: #0A0A0A;
            --text-color: #FFFFFF;
            --accent-color-1: #00FFFF;
            --accent-color-2: #FF00FF;
            --border-color: #333;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 100px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        main {
            padding-bottom: 50px;
        }

        h1, h2 {
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            color: var(--accent-color-1);
            text-transform: uppercase;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 3rem);
            color: var(--text-color);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            text-align: left;
        }

        h2::after {
            content: '';
            display: block;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
            margin: 10px 0 0;
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        ul {
            list-style: none;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 20px;
        }
        
        ul li::before {
            content: '•';
            color: var(--accent-color-1);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.5rem;
            line-height: 1;
        }

        header {
            background-color: var(--bg-color);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--accent-color-1);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s, text-shadow 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent-color-1);
            text-shadow: 0 0 10px var(--accent-color-1);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease-in-out;
        }

        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.active .line2 {
            opacity: 0;
        }

        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        footer {
            background-color: #111;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid var(--border-color);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color-1);
        }

        .footer-info {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.8;
            margin-top: 15px;
        }

        .footer-info span {
            display: block;
            margin-bottom: 5px;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #aaa;
            text-align: center;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            margin-top: 40px;
        }

        .disclaimer p {
            font-size: 0.8rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 80px;
                background-color: #111;
                flex-direction: column;
                width: 100%;
                height: 100vh;
                text-align: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                z-index: 99;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                opacity: 0;
                transition: opacity 0.5s ease-in-out;
            }

            .nav-links.active li {
                opacity: 1;
                transition-delay: 0.2s;
            }

            .nav-links a {
                display: block;
                padding: 20px 0;
            }

            .burger {
                display: flex;
            }
            
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            p { font-size: 1rem; }
            .footer-links { flex-direction: column; }
        }

