* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --dark-bg: #121212;
            --darker-bg: #0a0a0a;
            --text-light: #e0e0e0;
            --accent: #ff00aa;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--darker-bg);
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding: 100px 0 50px;
            min-height: 100vh;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 30px;
        }
        
        .page-title h1 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .page-title p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .terms-content {
            background-color: rgba(18, 18, 18, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section:last-child {
            margin-bottom: 0;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .terms-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background-color: var(--primary-color);
            border-radius: 3px;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 25px 0 15px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .terms-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 70px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            opacity: 0.7;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 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-links.show {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2.5rem;
            }
            
            .terms-content {
                padding: 20px;
            }
        }

