:root {
            --primary: #FF5E7D;
            --secondary: #47CF73;
            --accent: #2E86AB;
            --dark: #0A2342;
            --light: #FDFFFC;
            --retro-blue: #00F5FF;
            --retro-pink: #FF2E63;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 10% 20%, rgba(46, 134, 171, 0.1) 0%, rgba(10, 35, 66, 1) 90%);
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 35, 66, 0.9);
            padding: 1rem 2rem;
            z-index: 1000;
            border-bottom: 3px solid var(--retro-blue);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-blue);
            text-decoration: none;
            font-family: 'Arial Black', sans-serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--retro-pink);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-pink);
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        .terms-container {
            max-width: 1000px;
            margin: 8rem auto 4rem;
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-blue);
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--retro-pink);
        }
        p {
            margin-bottom: 1.5rem;
        }
        ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 2rem;
            border-top: 3px solid var(--retro-pink);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-column h3 {
            color: var(--retro-blue);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--retro-pink);
        }
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--retro-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        .disclaimer {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid var(--retro-blue);
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: var(--dark);
                flex-direction: column;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in;
                z-index: 999;
                border-bottom: 3px solid var(--retro-pink);
            }
            .nav-links.active {
                transform: translateY(0);
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            .terms-container {
                margin-top: 6rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

