* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 14, 39, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #00d4ff;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #00d4ff;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #00d4ff;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .terms-content {
            background: linear-gradient(145deg, #0f1629, #0a0e27);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.1);
            margin: 30px 0;
        }
        
        .terms-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #00d4ff;
        }
        
        .terms-content h2 {
            font-size: 28px;
            margin: 40px 0 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
        }
        
        .terms-content h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #0099cc);
            bottom: 0;
            left: 0;
        }
        
        .terms-content h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: #00d4ff;
        }
        
        .terms-content p {
            margin-bottom: 20px;
            color: #c0c0c0;
        }
        
        .terms-content ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .terms-content li {
            margin-bottom: 12px;
            color: #c0c0c0;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #050816;
            color: #888888;
            padding: 25px 0;
            text-align: center;
            font-size: 14px;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: #050816;
            color: #ffffff;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #00d4ff;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #0099cc);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #c0c0c0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #c0c0c0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #00d4ff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #888888;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: linear-gradient(145deg, #0f1629, #0a0e27);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .terms-content {
                padding: 30px 20px;
            }
            
            .terms-content h1 {
                font-size: 28px;
            }
            
            .terms-content h2 {
                font-size: 24px;
            }
        }

