* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #FF6EC7;
            --secondary-color: #00FFFF;
            --tertiary-color: #8A2BE2;
            --background-color: #1A0033;
            --text-color: #FFFFFF;
            --card-bg: rgba(255, 255, 255, 0.1);
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 15px rgba(255, 110, 199, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px var(--secondary-color);
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
            width: 30px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        /* Terms Styles */
        .terms-container {
            padding: 50px 0;
            background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(138, 43, 226, 0.2));
            border-radius: 15px;
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .terms-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .terms-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        .terms-content {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .terms-section h3 {
            color: var(--primary-color);
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: rgba(26, 0, 51, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
            }
            
            .nav-menu.active {
                transform: translateX(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .terms-title h1 {
                font-size: 2rem;
            }
        }

