:root {
            --primary-color: #5d2e95; /* Deep Purple */
            --secondary-color: #f7b32b; /* Vibrant Yellow */
            --accent-color: #0b0c2a; /* Dark Blue */
            --text-color: #e5e4e2; /* Light Gray */
            --bg-color: #2e0e4f; /* Dark Purple */
            --font-family: 'Courier New', Courier, monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        header {
            position: fixed;
            width: 100%;
            background-color: rgba(46, 14, 79, 0.9);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
        }

        .burger-menu span {
            width: 100%;
            height: 3px;
            background-color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        main {
            padding-top: 8rem;
            max-width: 900px;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        section {
            margin-bottom: 2rem;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        h1 {
            text-transform: uppercase;
        }

        p, li {
            margin-bottom: 1rem;
        }

        ul {
            list-style-type: none;
            padding-left: 1.5rem;
        }
        
        ul li::before {
            content: "• ";
            color: var(--secondary-color);
        }

        .disclaimer {
            background-color: var(--accent-color);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 1px solid var(--secondary-color);
            font-size: 0.8rem;
            color: rgba(229, 228, 226, 0.7);
            margin-top: 2rem;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 1px solid var(--secondary-color);
        }

        footer .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
        footer a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 6rem;
                left: 0;
                width: 100%;
                background-color: rgba(46, 14, 79, 0.95);
                padding: 1rem 0;
                text-align: center;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                padding: 1rem;
                border-bottom: 1px solid var(--secondary-color);
            }

            .burger-menu {
                display: flex;
            }
        }

