:root {
            --primary-color: #FF6AD5;
            --secondary-color: #C774E8;
            --accent-color: #00F0FF;
            --dark-color: #1A0933;
            --light-color: #F7F7F7;
            --text-color: #E0E0E0;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--dark-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 9, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(255, 106, 213, 0.7);
            transition: var(--transition);
            letter-spacing: 2px;
        }
        
        .logo:hover {
            color: var(--accent-color);
            text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 5px 0;
            transition: var(--transition);
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
            background-color: var(--dark-color);
            position: relative;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,106,213,0.05)" stroke-width="1"/></svg>');
            opacity: 0.5;
            z-index: -1;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 30px;
        }
        
        .page-title h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .terms-content {
            background: linear-gradient(135deg, rgba(26, 9, 51, 0.9), rgba(26, 9, 51, 0.7));
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(255, 106, 213, 0.2);
            border: 1px solid rgba(255, 106, 213, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .terms-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 106, 213, 0.1), rgba(0, 240, 255, 0.1));
            z-index: -1;
        }
        
        .terms-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .terms-content h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .terms-content p {
            margin-bottom: 20px;
        }
        
        .terms-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-content li {
            margin-bottom: 10px;
        }
        
        .terms-content a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .terms-content a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-color), rgba(26, 9, 51, 0.9));
            color: var(--text-color);
            padding: 70px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,106,213,0.05)" stroke-width="1"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .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: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, rgba(26, 9, 51, 0.95), rgba(26, 9, 51, 0.9));
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: right 0.5s ease;
            }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 1.7rem;
            }
            
            .terms-content h2 {
                font-size: 1.5rem;
            }
            
            .terms-content h3 {
                font-size: 1.2rem;
            }
        }

