/* Copy all styles from index.php */
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --dark-bg: #0a0a0a;
            --card-bg: #111111;
            --surface-bg: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            --border-color: rgba(255, 255, 255, 0.08);
            --hover-bg: rgba(255, 255, 255, 0.05);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
            --blur-bg: saturate(180%) blur(20px);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        /* Container */
        .wrapper {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header - Exact copy from index.php */
        .header {
            background: rgba(17, 17, 17, 0.8);
            backdrop-filter: var(--blur-bg);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1800px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
        }

        .header-top {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 1rem;
        }

        .logo {
            text-align: center;
        }

        .logo-text {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-block;
            position: relative;
        }

        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo-text:hover::after {
            transform: scaleX(1);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            position: absolute;
            right: 0;
            background: var(--surface-bg);
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle:hover {
            background: var(--hover-bg);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .menu-toggle-arrow {
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 12px solid var(--text-primary);
            transition: transform 0.3s ease;
        }

        .menu-toggle.active .menu-toggle-arrow {
            transform: rotate(180deg);
        }

        /* Navigation */
        .nav-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .search-wrapper {
            width: 100%;
            max-width: 600px;
            position: relative;
        }

        .search-field {
            width: 100%;
            padding: 0.875rem 3rem 0.875rem 1.25rem;
            background: var(--surface-bg);
            border: 2px solid transparent;
            border-radius: 100px;
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .search-field:focus {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.05);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0.5;
            pointer-events: none;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
        }

        .nav-pills {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-pill {
            padding: 0.625rem 1.5rem;
            background: var(--surface-bg);
            border: 2px solid transparent;
            border-radius: 100px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-pill span {
            position: relative;
            z-index: 1;
        }

        .nav-pill:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: var(--text-primary);
        }

        .nav-pill.active {
            background: var(--primary-gradient);
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Legal Content Styles */
        .legal-content {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
        }

        .legal-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .legal-content h2 {
            font-size: 1.75rem;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }

        .legal-content h3 {
            font-size: 1.25rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--text-primary);
        }

        .legal-content p {
            margin: 1rem 0;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .legal-content ul, .legal-content ol {
            margin: 1rem 0 1rem 2rem;
            color: var(--text-secondary);
        }

        .legal-content li {
            margin: 0.5rem 0;
            line-height: 1.8;
        }

        .legal-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Footer - Exact copy from index.php */
        .footer {
            background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.5));
            backdrop-filter: blur(10px);
            padding: 3rem 1.5rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .footer-link:hover {
            color: var(--text-primary);
        }

        .footer-link:hover::after {
            transform: scaleX(1);
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-inner {
                padding: 0.75rem 1rem;
            }
            
            .header-top {
                margin-bottom: 0;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-container {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.3s ease;
                margin-top: 0;
            }
            
            .nav-container.active {
                max-height: 400px;
                opacity: 1;
                margin-top: 1rem;
            }
            
            .legal-content {
                padding: 1.5rem;
            }
            
            .legal-content h1 {
                font-size: 2rem;
            }
            
            .legal-content h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .content-wrapper {
                padding: 0 0.5rem;
            }
            
            .legal-content {
                padding: 1.25rem;
                border-radius: 8px;
            }
            
            .menu-toggle-arrow {
                border-left-width: 8px;
                border-right-width: 8px;
                border-top-width: 10px;
            }
             .menu-toggle-arrow {
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 10px;
    }
        }