:root {
            --primary: #2a0845;
            --secondary: #ff6b6b;
            --accent: #ffd166;
            --text: #e0e0e0;
            --light: #f0f0f0;
            --dark: #0d0d0d;
            --gradient: linear-gradient(135deg, #2a0845, #4a148c);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            letter-spacing: 0.5px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--secondary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            margin-top: 80px;
            padding: 3rem 5%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--light);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .terms-content {
            background: linear-gradient(135deg, rgba(42, 8, 69, 0.8), rgba(74, 20, 140, 0.8));
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 209, 102, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .terms-section {
            margin-bottom: 2rem;
        }
        
        .terms-section h2 {
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .terms-section h3 {
            color: var(--accent);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .terms-section p {
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .terms-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .terms-section li {
            margin-bottom: 0.5rem;
        }
        
        footer {
            background: linear-gradient(135deg, rgba(42, 8, 69, 0.9), rgba(74, 20, 140, 0.9));
            padding: 3rem 5%;
            color: var(--text);
            border-top: 2px solid var(--secondary);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--primary);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            .page-title {
                font-size: 2rem;
            }
        }

