        :root {
            --text-primary: #cdd6f4;
            --primary: #6c2bd9;
            --primary-light: #8a52e0;
            --primary-glow: rgba(108, 43, 217, 0.3);
            --background: #121317;
            --card-bg: #242635;
            --card-bg-alt: #313244;
            --text-secondary: #a6adc8;
            --border: #313244;
            --gradient: linear-gradient(135deg, #6c2bd9 0%, #8b5cf6 100%);
            --gradient-hover: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            --success: #40a02b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--background);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        .particle:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 5%; animation-duration: 25s; }
        .particle:nth-child(2) { width: 200px; height: 200px; top: 60%; left: 80%; animation-duration: 20s; animation-delay: 2s; }
        .particle:nth-child(3) { width: 150px; height: 150px; top: 80%; left: 20%; animation-duration: 30s; animation-delay: 1s; }
        .particle:nth-child(4) { width: 250px; height: 250px; top: 20%; left: 70%; animation-duration: 35s; animation-delay: 3s; }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        /* Header */
        header {
            background-color: rgba(18, 19, 23, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transform: translateY(0);
            transition: all 0.3s ease;
        }
        
        header.hidden {
            transform: translateY(-100%);
        }
        
        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            position: relative;
            display: inline-block;
        }
        
        .logo-icon i {
            font-size: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }
        
        nav a:hover {
            color: var(--text-primary);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .login-btn {
            background: var(--gradient);
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-hover);
            transition: left 0.3s;
            z-index: -1;
        }
        
        .login-btn:hover::before {
            left: 0;
        }
        
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--primary-glow);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease-out forwards;
        }
        
        .hero h1 span {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease-out 0.2s forwards;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease-out 0.4s forwards;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Features */
        .features {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: linear-gradient(145deg, var(--card-bg), var(--background));
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .feature-card:hover::before {
            opacity: 0.05;
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px var(--primary-glow);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--text-secondary);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            position: relative;
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(108, 43, 217, 0.1) 0%, transparent 50%);
            z-index: -1;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: linear-gradient(145deg, var(--card-bg), var(--background));
            border-radius: 20px;
            padding: 45px 35px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .pricing-card > * {
            position: relative;
            z-index: 1;
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        .pricing-card:hover::before {
            opacity: 0.03;
        }
        
        .pricing-card.popular {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transform: rotate(45deg);
            box-shadow: 0 5px 15px var(--primary-glow);
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }
        
        .pricing-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 5px;
            line-height: 1;
        }
        
        .pricing-period {
            color: var(--text-secondary);
            font-size: 1rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover .pricing-features li {
            transform: translateX(5px);
        }
        
        .pricing-features i {
            color: var(--success);
            font-size: 1.1rem;
            min-width: 20px;
        }
        
        .pricing-features .disabled {
            color: var(--text-secondary);
        }
        
        .pricing-features .disabled i {
            color: var(--text-secondary);
        }
        
        /* Bots Section */
        .bots {
            padding: 100px 0;
        }
        
        .bots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .bot-card {
            background: linear-gradient(145deg, var(--card-bg), var(--background));
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .bot-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .bot-card:hover::before {
            opacity: 0.05;
        }
        
        .bot-card > * {
            position: relative;
            z-index: 1;
        }
        
        .bot-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .bot-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            transition: all 0.3s;
        }
        
        .bot-card:hover .bot-icon {
            transform: scale(1.1);
            box-shadow: 0 15px 30px var(--primary-glow);
        }
        
        .bot-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .bot-card p {
            color: var(--text-secondary);
        }
        
        /* CTA Section */
        .cta {
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(108, 43, 217, 0.15) 0%, transparent 60%);
            z-index: -1;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .cta p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--gradient);
            color: white;
            padding: 18px 45px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 30px var(--primary-glow);
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-hover);
            transition: left 0.3s;
            z-index: -1;
        }
        
        .cta-btn:hover::before {
            left: 0;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px var(--primary-glow);
        }
        
        /* Simple Footer */
        footer {
            padding: 60px 0 30px;
            border-top: 1px solid var(--border);
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gradient);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 25px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
        }
        
        .footer-logo i {
            font-size: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 10px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--text-primary);
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        .copyright {
            margin-top: 30px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--border);
            width: 100%;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .pricing-cards {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            
            .hero {
                padding: 160px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .bots-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }
        /* Scroll Animations */
        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--background);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }
   