

        :root {
            --primary: #ff6b35;
            --primary-light: #ff8c42;
            --primary-dark: #e85a2b;
            --accent: #ffa726;
            --accent-light: #ffcc80;
            --dark-bg: #0a0b0d;
            --darker-bg: #161618;
            --card-bg: #1e1f23;
            --card-hover: #252730;
            --text-primary: #ffffff;
            --text-secondary: #a0a0ab;
            --text-muted: #6c6c75;
            --border: #2a2b30;
            --border-hover: #3a3b40;
            --success: #00d4aa;
            --info: #4a9eff;
            --warning: #ffa726;
            --glass-bg: rgba(30, 31, 35, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(10, 11, 13, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

/* === Logo container === */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* === Fish Icon === */
.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* smooth return when unhovered */
    transition: transform 0.6s ease-in-out;
}

/* === Swimming Effect on Hover === */
.logo:hover .logo-icon {
    animation: swim 2s infinite linear;
}

/* === Reset to Neutral Smoothly on Unhover === */
.logo:not(:hover) .logo-icon {
    animation: none;                        /* stop swim loop */
    transform: translateY(0) rotate(0deg);  /* return home */
}

/* === Swim Keyframes === */
@keyframes swim {
    0%   { transform: translateY(0px) rotate(0deg); }
    5%   { transform: translateY(-3px) rotate(6deg); }
    10%  { transform: translateY(-6px) rotate(12deg); }
    15%  { transform: translateY(-3px) rotate(6deg); }
    20%  { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(3px) rotate(-6deg); }
    30%  { transform: translateY(6px) rotate(-12deg); }
    35%  { transform: translateY(3px) rotate(-6deg); }
    40%  { transform: translateY(0px) rotate(0deg); }
    45%  { transform: translateY(-3px) rotate(6deg); }
    50%  { transform: translateY(-6px) rotate(12deg); }
    55%  { transform: translateY(-3px) rotate(6deg); }
    60%  { transform: translateY(0px) rotate(0deg); }
    65%  { transform: translateY(3px) rotate(-6deg); }
    70%  { transform: translateY(6px) rotate(-12deg); }
    75%  { transform: translateY(3px) rotate(-6deg); }
    80%  { transform: translateY(0px) rotate(0deg); }
    85%  { transform: translateY(-3px) rotate(6deg); }
    90%  { transform: translateY(-6px) rotate(12deg); }
    95%  { transform: translateY(-3px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}


        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .nav-links a.active {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        /* Legal Page Hero */
        .legal-hero {
            padding: 180px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .legal-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            z-index: 0;
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .legal-hero-content {
            position: relative;
            z-index: 2;
        }

        .legal-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .legal-hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        /* Legal Content */
        .legal-content {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 50px;
            margin: 50px auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            max-width: 1000px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .legal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .legal-content:hover::before {
            transform: scaleX(1);
        }

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

        .legal-content h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--accent);
        }

        .legal-content p {
            margin-bottom: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .legal-content ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .legal-content li {
            margin-bottom: 12px;
            color: var(--text-secondary);
            position: relative;
            padding-left: 20px;
        }

        .legal-content li::before {
            content: "•";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            line-height: 1;
        }

        .legal-content .highlight {
            background: rgba(255, 107, 53, 0.1);
            padding: 20px;
            border-left: 3px solid var(--primary);
            border-radius: 8px;
            margin: 20px 0;
            font-size: 1.1rem;
        }

        .last-updated {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        /* Back to Chat */
        .back-to-chat {
            text-align: center;
            margin: 40px 0;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--text-primary);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            border-radius: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .legal-content {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--glass-bg);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 32px 24px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid var(--glass-border);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links a {
                padding: 16px;
                border-radius: 12px;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .legal-hero {
                padding: 150px 0 50px;
            }
            
            .legal-content {
                padding: 30px 20px;
            }
            
            .legal-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .legal-hero {
                padding: 130px 0 40px;
            }
            
            .legal-hero h1 {
                font-size: 2rem;
            }
            
            .legal-content {
                padding: 25px 15px;
            }
            
            .legal-content h2 {
                font-size: 1.6rem;
            }
        }

        :root {
            --primary: #ff6b35;
            --primary-light: #ff8c42;
            --primary-dark: #e85a2b;
            --accent: #ffa726;
            --accent-light: #ffcc80;
            --dark-bg: #0a0b0d;
            --darker-bg: #161618;
            --card-bg: #1e1f23;
            --card-hover: #252730;
            --text-primary: #ffffff;
            --text-secondary: #a0a0ab;
            --text-muted: #6c6c75;
            --border: #2a2b30;
            --border-hover: #3a3b40;
            --success: #00d4aa;
            --info: #4a9eff;
            --warning: #ffa726;
            --glass-bg: rgba(30, 31, 35, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(10, 11, 13, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-icon {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(12deg) scale(1.1);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .nav-links a.active {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        /* Legal Page Hero */
        .legal-hero {
            padding: 180px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .legal-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
            z-index: 0;
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .legal-hero-content {
            position: relative;
            z-index: 2;
        }

        .legal-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .legal-hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        /* Legal Content */
        .legal-content {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 50px;
            margin: 50px auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            max-width: 1000px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .legal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .legal-content:hover::before {
            transform: scaleX(1);
        }

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

        .legal-content h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--accent);
        }

        .legal-content p {
            margin-bottom: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .legal-content ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .legal-content li {
            margin-bottom: 12px;
            color: var(--text-secondary);
            position: relative;
            padding-left: 20px;
        }

        .legal-content li::before {
            content: "•";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            line-height: 1;
        }

        .legal-content .highlight {
            background: rgba(255, 107, 53, 0.1);
            padding: 20px;
            border-left: 3px solid var(--primary);
            border-radius: 8px;
            margin: 20px 0;
            font-size: 1.1rem;
        }

        .legal-content a {
            color: var(--info);
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dashed var(--info);
        }

        .legal-content a:hover {
            color: var(--accent);
            border-bottom: 1px solid var(--accent);
        }

        .last-updated {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        /* Back to Home */
        .back-to-home {
            text-align: center;
            margin: 40px 0;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--text-primary);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            border-radius: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .legal-content {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--glass-bg);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 32px 24px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid var(--glass-border);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links a {
                padding: 16px;
                border-radius: 12px;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .legal-hero {
                padding: 150px 0 50px;
            }
            
            .legal-content {
                padding: 30px 20px;
            }
            
            .legal-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .legal-hero {
                padding: 130px 0 40px;
            }
            
            .legal-hero h1 {
                font-size: 2rem;
            }
            
            .legal-content {
                padding: 25px 15px;
            }
            
            .legal-content h2 {
                font-size: 1.6rem;
            }
        }

/* STYLING FROM INDEX.HTML: */

        :root {
            --primary: #ff6b35;
            --primary-light: #ff8c42;
            --primary-dark: #e85a2b;
            --accent: #ffa726;
            --accent-light: #ffcc80;
            --dark-bg: #0a0b0d;
            --darker-bg: #161618;
            --card-bg: #1e1f23;
            --card-hover: #252730;
            --text-primary: #ffffff;
            --text-secondary: #a0a0ab;
            --text-muted: #6c6c75;
            --border: #2a2b30;
            --border-hover: #3a3b40;
            --success: #00d4aa;
            --info: #4a9eff;
            --warning: #ffa726;
            --glass-bg: rgba(8, 8, 10, 0.568);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Banner Styles */
        .banner-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            pointer-events: none;
        }

        .banner {
            width: 100%;
            padding: 12px 20px;
            text-align: center;
            font-weight: 500;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            pointer-events: auto;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .banner.success {
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.9), rgba(0, 184, 148, 0.9));
            color: white;
        }

        .banner.error {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
            color: white;
        }

        .banner.warning {
            background: linear-gradient(135deg, rgba(255, 167, 38, 0.9), rgba(243, 156, 18, 0.9));
            color: white;
        }

        .banner.info {
            background: linear-gradient(135deg, rgba(74, 158, 255, 0.9), rgba(52, 152, 219, 0.9));
            color: white;
        }

        .banner-icon {
            font-size: 1.1rem;
        }

        .banner-close {
            position: absolute;
            right: 20px;
            background: none;
            border: none;
            color: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .banner-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(10, 11, 13, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        header.with-banner {
            top: 60px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-icon {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(12deg) scale(1.1);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-links a, .nav-dropdown-toggle {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links a:hover, .nav-dropdown-toggle:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-dropdown {
            position: absolute;
            margin-top: 12.5px;
            top: 100%;
            left: 0;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .nav-item:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
            animation: dropdownItemFadeIn 0.4s ease forwards;
        }

        .nav-dropdown-item:nth-child(1) { animation-delay: 0.1s; }
        .nav-dropdown-item:nth-child(2) { animation-delay: 0.15s; }
        .nav-dropdown-item:nth-child(3) { animation-delay: 0.2s; }
        .nav-dropdown-item:nth-child(4) { animation-delay: 0.25s; }

        .nav-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transform: translateX(0);
        }

        .nav-dropdown-item i {
            width: 20px;
            text-align: center;
            color: var(--primary);
        }

        @keyframes dropdownItemFadeIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
            flex-wrap: wrap;
        }

        .secondary-button {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 2px solid var(--border);
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .secondary-button:hover {
            background: var(--card-hover);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--glass-border);
            position: relative;
            animation: float 6s ease-in-out infinite;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--border-hover);
            background: var(--card-hover);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Platforms Section */
        .platforms {
            padding: 100px 0;
            background: var(--darker-bg);
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .platform-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .platform-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .platform-card:hover::after {
            transform: scale(1);
        }

        .platform-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 24px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .platform-card:hover .platform-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .web-icon { color: var(--primary); }
        .telegram-icon { color: #0088cc; }
        .discord-icon { color: #5865F2; }

        .platform-card h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
            position: relative;
            z-index: 2;
        }

        .platform-card p {
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .platform-card .cta-button {
            position: relative;
            z-index: 2;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 167, 38, 0.1) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cta-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-button.large {
            padding: 18px 36px;
            font-size: 1.1rem;
            border-radius: 16px;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--text-primary);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            border-radius: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--glass-bg);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 32px 24px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid var(--glass-border);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links a, .nav-dropdown-toggle {
                padding: 16px;
                border-radius: 12px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .nav-dropdown {
                position: static;
                background: var(--darker-bg);
                border: none;
                border-radius: 8px;
                margin-top: 8px;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
            }
            
            .mobile-menu-btn {
                display: block;
                display: none;
            }

            #header-cta {
                display: none;
            }

            .hero {
                padding: 120px 0 60px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features, .platforms {
                padding: 80px 0;
            }

            .features-grid, .platforms-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .cta-section {
                padding: 80px 0;
            }

            footer {
                padding: 60px 0 30px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 40px;
            }

            .feature-card, .platform-card {
                padding: 32px 24px;
            }

            .banner {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            .banner-close {
                right: 16px;
            }
        }
* {
    scroll-behavior: smooth;
}