* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #FF00FF;
            --secondary: #00FFFF;
            --accent: #FFD700;
            --dark: #1a0033;
            --light: #fff;
            --text: #e0e0ff;
        }
        
        body {
            background: linear-gradient(135deg, #1a0033, #330066);
            color: var(--text);
            line-height: 1.6;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            letter-spacing: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background: var(--primary);
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 80px;
            padding: 40px 0;
        }
        
        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(26, 0, 51, 0.6);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
        }
        
        h1 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--primary);
            text-align: center;
        }
        
        h2 {
            font-size: 28px;
            margin: 30px 0 15px;
            color: var(--secondary);
        }
        
        h3 {
            font-size: 22px;
            margin: 25px 0 10px;
            color: var(--accent);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .last-updated {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.6);
        }
        
        footer {
            background: rgba(26, 0, 51, 0.9);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 0, 51, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .terms-container {
                padding: 20px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
        }

