* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #FF6AD5, #C774E8, #7A65F9, #4D9DE0);
            color: #FFFFFF;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        h1 {
            font-size: 3rem;
            color: #FFFFFF;
            text-shadow: 0 0 10px #FF10F0;
        }
        
        h2 {
            font-size: 2.5rem;
            color: #FFFFFF;
            text-shadow: 0 0 8px #00FFFF;
        }
        
        h3 {
            font-size: 1.8rem;
            color: #FFFFFF;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        a {
            color: #00FFFF;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        
        a:hover {
            color: #FF10F0;
            text-shadow: 0 0 5px #FF10F0;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #FFFFFF;
            text-transform: uppercase;
            text-shadow: 0 0 10px #00FFFF;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: #FFFFFF;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
        }
        
        .nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, #FF10F0, #00FFFF);
            transition: width 0.3s ease;
        }
        
        .nav a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #FFFFFF;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .terms-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
            margin-top: 30px;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            color: #FFFFFF;
            border-bottom: 2px solid #00FFFF;
            padding-bottom: 10px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        footer {
            background: rgba(0, 0, 0, 0.7);
            color: #FFFFFF;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #FFFFFF;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #FF10F0, #00FFFF);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #FFFFFF;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: #00FFFF;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            .nav.active {
                transform: translateX(0);
            }
            
            .nav li {
                margin: 0 0 30px 0;
            }
            
            .burger {
                display: block;
            }
            
            .terms-content {
                padding: 20px;
            }
        }

