* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1A0033;
            color: #ffffff;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(26,0,51,0.9) 0%, rgba(0,0,51,0.9) 100%);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF00FF;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #FF00FF;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #00FFFF;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        nav ul li a:hover {
            color: #FF1493;
            text-shadow: 0 0 5px #FF1493;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #00FFFF;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding: 120px 0 50px;
            background-color: #1A0033;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #FF00FF;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
        }
        
        .terms-content {
            background: linear-gradient(135deg, rgba(26,0,51,0.8), rgba(0,0,51,0.8));
            border-radius: 15px;
            padding: 40px;
            margin-top: 30px;
            border: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #FF1493;
        }
        
        .terms-section p {
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section ul li {
            margin-bottom: 8px;
            color: #ffffff;
        }
        
        .terms-section strong {
            color: #7CFC00;
        }
        
        /* Footer */
        footer {
            background-color: #000033;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            color: #FF00FF;
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #00FFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #FF1493;
            text-shadow: 0 0 5px #FF1493;
        }
        
        .footer-column p {
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: linear-gradient(90deg, rgba(26,0,51,0.95), rgba(0,0,51,0.95));
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: block;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 25px;
            }
        }

