:root {
            --primary: #FF00FF;
            --secondary: #00FFFF;
            --accent: #FF77A3;
            --dark: #0D0221;
            --light: #FFE4F1;
            --text: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            text-shadow: 0 0 15px var(--secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .burger.active .line2 {
            opacity: 0;
        }
        
        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.95);
            padding: 20px;
            border-bottom: 2px solid var(--primary);
        }
        
        .nav-menu.active li {
            margin: 10px 0;
        }
        
        main {
            margin-top: 80px;
            padding: 60px 0;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 3rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .terms-content {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.8), rgba(255, 0, 255, 0.2));
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
            border-top: 6px solid var(--secondary);
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.7rem;
            position: relative;
            padding-left: 25px;
        }
        
        .terms-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background-color: var(--secondary);
            border-radius: 50%;
        }
        
        .terms-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .terms-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            font-size: 1.05rem;
        }
        
        .terms-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        footer {
            background: linear-gradient(135deg, rgba(13, 2, 33, 0.9), rgba(255, 0, 255, 0.3));
            color: var(--text);
            padding: 60px 0 40px;
            margin-top: 60px;
            border-top: 2px solid var(--primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2.2rem;
            }
        }

