:root {
            --primary-color: #f72585;
            --secondary-color: #3a0ca3;
            --accent-color: #4361ee;
            --text-color: #f0e6ef;
            --bg-color: #2b0c3d;
            --transition-speed: 0.5s;
        }

        @font-face {
            font-family: 'RetroFont';
            src: url('https://fonts.gstatic.com/s/pressstart2p/v15/87_rO4_OGYyYnfoqygBPR-8.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'RetroFont', sans-serif;
            text-shadow: 1px 1px 2px var(--secondary-color);
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 100px;
        }

        header {
            width: 100%;
            background-color: rgba(43, 12, 61, 0.9);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        header .logo {
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        header nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 1rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        header nav a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease-in-out;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100%;
                width: 70%;
                background-color: rgba(43, 12, 61, 0.95);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                opacity: 0;
                transition: opacity 0.5s ease;
            }
            .nav-links.active li {
                opacity: 1;
                transition: opacity 0.5s ease-in 0.5s;
            }
            .nav-links li a {
                display: block;
                padding: 1rem;
                text-align: center;
            }
            .burger-menu {
                display: flex;
            }
        }

        main {
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        h1, h2 {
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
        }
        
        h2 {
            margin-top: 2.5rem;
            text-align: left;
            font-size: 1.5rem;
        }
        
        p, ul, li {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        ul {
            padding-left: 2rem;
        }
        
        footer {
            background-color: rgba(43, 12, 61, 0.9);
            padding: 2rem;
            text-align: center;
            border-top: 2px solid var(--primary-color);
            margin-top: 4rem;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-content p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

