        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #5865F2;
            --primary-hover: #4752C4;
            --secondary: #EB459E;
            --accent: #57F287;
            --purple: #7C3AED;
            --pink: #EC4899;
            --blue: #3B82F6;
            --cyan: #06B6D4;
            --bg-dark: #0a0e1a;
            --bg-darker: #050810;
            --bg-card: rgba(30, 35, 50, 0.6);
            --bg-card-hover: rgba(30, 35, 50, 0.9);
            --bg-premium: rgba(20, 25, 40, 0.95);
            --text-primary: #FFFFFF;
            --text-secondary: #B9BBBE;
            --text-gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 25%, #EC4899 50%, #A855F7 75%, #3B82F6 100%);
            --border: rgba(88, 101, 242, 0.15);
            --border-premium: rgba(139, 92, 246, 0.25);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-rainbow: linear-gradient(135deg, #F59E0B 0%, #EF4444 25%, #EC4899 50%, #A855F7 75%, #3B82F6 100%);
            --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
            --gradient-pink: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
            --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
            --gradient-glow: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #3B82F6 100%);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-premium: 0 20px 80px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 10px 40px rgba(168, 85, 247, 0.4);
            --shadow-gold: 0 20px 60px rgba(255, 215, 0, 0.25);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-darker);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
        }

        /* Premium scroll styling */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-glow);
            border-radius: 6px;
            border: 2px solid var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-rainbow);
        }

        /* Selection styling */
        ::selection {
            background: rgba(168, 85, 247, 0.3);
            color: var(--text-primary);
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15), transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%);
            animation: drift 20s ease-in-out infinite;
        }

        @keyframes drift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-5%, 5%) rotate(5deg); }
            66% { transform: translate(5%, -5%) rotate(-5deg); }
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .star {
            position: absolute;
            border-radius: 50%;
            background: white;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 
                        0 0 16px rgba(168, 85, 247, 0.7), 
                        0 0 24px rgba(236, 72, 153, 0.5);
            animation: twinkle 4s ease-in-out infinite;
        }

        .star.small {
            width: 2px;
            height: 2px;
        }

        .star.medium {
            width: 3px;
            height: 3px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 1), 
                        0 0 20px rgba(168, 85, 247, 0.8), 
                        0 0 30px rgba(236, 72, 153, 0.6);
        }

        .star.bright {
            width: 4px;
            height: 4px;
            box-shadow: 0 0 12px rgba(255, 255, 255, 1), 
                        0 0 24px rgba(168, 85, 247, 0.9), 
                        0 0 36px rgba(236, 72, 153, 0.7),
                        0 0 48px rgba(59, 130, 246, 0.5);
        }

        .star.superbright {
            width: 5px;
            height: 5px;
            box-shadow: 0 0 15px rgba(255, 255, 255, 1), 
                        0 0 30px rgba(168, 85, 247, 1), 
                        0 0 45px rgba(236, 72, 153, 0.8),
                        0 0 60px rgba(59, 130, 246, 0.6);
            animation: twinkle-bright 3s ease-in-out infinite;
        }

        .constellation-line {
            position: absolute;
            height: 1.5px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(168, 85, 247, 0.5) 10%, 
                rgba(236, 72, 153, 0.6) 50%, 
                rgba(168, 85, 247, 0.5) 90%, 
                transparent);
            transform-origin: left center;
            animation: constellation-pulse 4s ease-in-out infinite;
            filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.8));
        }

        @keyframes twinkle {
            0%, 100% { 
                opacity: 0.5; 
                transform: scale(1); 
            }
            25% { 
                opacity: 0.8; 
                transform: scale(1.15); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.3); 
            }
            75% { 
                opacity: 0.8; 
                transform: scale(1.15); 
            }
        }

        @keyframes twinkle-bright {
            0%, 100% { 
                opacity: 0.7; 
                transform: scale(1) rotate(0deg); 
            }
            33% { 
                opacity: 1; 
                transform: scale(1.4) rotate(90deg); 
            }
            66% { 
                opacity: 0.9; 
                transform: scale(1.2) rotate(180deg); 
            }
        }

        @keyframes constellation-pulse {
            0%, 100% { 
                opacity: 0.4; 
                filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.8));
            }
            50% { 
                opacity: 0.8; 
                filter: drop-shadow(0 0 6px rgba(236, 72, 153, 1));
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 28px;
            font-weight: 900;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-primary);
            text-decoration: none;
            position: relative;
        }

        .logo-icon {
            width: 80px;
            height: auto;
            max-height: 80px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        .logo-icon img {
            width: 100%;
            height: auto;
        }

        .logo-text {
            background: linear-gradient(135deg, #ffffff 0%, #a855f7 45%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text .bot {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: var(--gradient-rainbow);
            color: white;
            box-shadow: var(--shadow-glow);
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 50px rgba(168, 85, 247, 0.6);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #A855F7;
            border: 2px solid var(--border-premium);
        }

        .btn-secondary:hover {
            background: rgba(168, 85, 247, 0.15);
            border-color: #A855F7;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            margin-top: 90px;
            min-height: calc(100vh - 90px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 40px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid var(--border-premium);
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-weight: 600;
            font-size: 14px;
            animation: pulse-badge 3s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
            color: #A855F7;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25); }
            50% { transform: scale(1.02); box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4); }
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 900;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .hero h1 .gradient-text {
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
            background-size: 200% auto;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .hero-subtitle {
            font-size: 24px;
            color: var(--text-secondary);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-buttons .btn {
            font-size: 18px;
            padding: 18px 40px;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 80px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 20px;
            min-width: 200px;
            backdrop-filter: blur(30px);
            transition: all 0.4s;
            box-shadow: var(--shadow-premium);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(168, 85, 247, 0.12), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            inset: -1px;
            background: var(--gradient-glow);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-premium), var(--shadow-glow);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover::after {
            opacity: 0.2;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        /* Featured Bots Section */
        .featured-bots {
            padding: 120px 40px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid var(--border-premium);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #F5F3FF;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
        }

        .section-title {
            font-size: 56px;
            font-weight: 900;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            margin-bottom: 20px;
            letter-spacing: -1px;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .bots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bot-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .bot-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(235, 69, 158, 0.1));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .bot-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: var(--bg-card-hover);
            box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
        }

        .bot-card:hover::before {
            opacity: 1;
        }

        .bot-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .bot-avatar {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .bot-info h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .bot-category {
            display: inline-block;
            background: rgba(88, 101, 242, 0.2);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bot-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .bot-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .bot-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .bot-stats {
            display: flex;
            justify-content: space-around;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .bot-stat {
            text-align: center;
        }

        .bot-stat-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .bot-stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bot-actions {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .bot-actions .btn {
            flex: 1;
            justify-content: center;
            font-size: 14px;
            padding: 14px 20px;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            background: rgba(88, 101, 242, 0.1);
        }

        /* All Bots Section */
        .all-bots {
            padding: 120px 40px;
            background: rgba(5, 8, 16, 0.5);
            position: relative;
            z-index: 1;
        }

        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50px;
            color: var(--text-secondary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Bot Showcase Slider */
        .bot-showcase {
            padding: 40px 40px 80px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .showcase-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }

        .showcase-track {
            display: flex;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .showcase-slide {
            min-width: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .showcase-slide.active {
            opacity: 1;
        }

        .showcase-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 24px;
            padding: 50px;
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .showcase-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.08), transparent 60%);
            pointer-events: none;
        }

        .showcase-content::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-glow);
            opacity: 0;
            border-radius: 24px;
            z-index: -1;
            transition: opacity 0.5s;
        }

        .showcase-content:hover::after {
            opacity: 0.15;
        }

        .showcase-left {
            position: relative;
            z-index: 1;
        }

        .showcase-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid var(--border-premium);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            color: #A855F7;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
        }

        .badge-icon {
            font-size: 14px;
        }

        .showcase-title {
            font-size: 42px;
            font-weight: 900;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            margin-bottom: 16px;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .showcase-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .showcase-description strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .showcase-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .feature-tag {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .feature-tag:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--border-premium);
            transform: translateY(-2px);
        }

        .showcase-stats-inline {
            display: flex;
            gap: 35px;
            margin-bottom: 28px;
            padding: 20px 0;
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .inline-stat {
            text-align: center;
        }

        .inline-stat-value {
            font-size: 28px;
            font-weight: 900;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }

        .inline-stat-label {
            font-size: 11px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
        }

        .showcase-actions {
            display: flex;
            gap: 12px;
        }

        .btn-large {
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .showcase-right {
            position: relative;
            z-index: 1;
        }

        .showcase-visual {
            position: relative;
            width: 100%;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-glow {
            position: absolute;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.15), transparent);
            border-radius: 50%;
            animation: pulse-premium 4s ease-in-out infinite;
        }

        @keyframes pulse-premium {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.15); opacity: 0.7; }
        }

        .visual-card {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 380px;
            background: #2b2d31;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow-premium), 0 0 40px rgba(168, 85, 247, 0.3);
            border: 1px solid rgba(168, 85, 247, 0.25);
            animation: float-luxury 8s ease-in-out infinite;
        }

        .visual-card-html {
            display: block;
            padding: 0;
        }

        .visual-card-html .mock-discord {
            background: #2b2d31;
        }

        .visual-card-html .mock-embed {
            border-radius: 10px;
        }

        .visual-card-media {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #2b2d31;
        }

        .visual-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .visual-card-empty {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 16px;
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.02);
        }

        @keyframes float-luxury {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-8px) rotate(0.5deg); }
            75% { transform: translateY(-12px) rotate(-0.5deg); }
        }

        /* Responsive showcase scaling */
        @media (min-width: 2560px) {
            /* 2K and 4K displays */
            .showcase-container {
                max-width: 1600px;
            }
            .showcase-content {
                padding: 70px;
                gap: 70px;
            }
            .showcase-title {
                font-size: 52px;
            }
            .showcase-visual {
                height: 520px;
            }
            .visual-card {
                max-width: 450px;
            }
        }

        @media (min-width: 1920px) and (max-width: 2559px) {
            /* Full HD and slightly above */
            .showcase-container {
                max-width: 1400px;
            }
            .showcase-content {
                padding: 55px;
                gap: 60px;
            }
            .showcase-title {
                font-size: 46px;
            }
            .visual-card {
                max-width: 400px;
            }
        }

        @media (max-width: 1919px) {
            /* 1080p and below */
            .showcase-container {
                max-width: 1200px;
            }
            .showcase-title {
                font-size: 42px;
            }
            .showcase-visual {
                height: 420px;
            }
        }

        .mock-discord {
            background: #313338;
            color: #e3e5e8;
            font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }

        .mock-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #2b2d31;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mock-channel {
            font-weight: 700;
            font-size: 16px;
            color: #f2f3f5;
        }

        .mock-icons {
            display: flex;
            gap: 15px;
            font-size: 18px;
        }

        .mock-messages {
            padding: 20px;
            min-height: 300px;
        }

        .mock-message {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .mock-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .mock-content {
            flex: 1;
        }

        .mock-name {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 8px;
        }

        .mock-bot {
            background: #5865F2;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 800;
            margin-left: 6px;
        }

        .mock-embed {
            background: #2b2d31;
            border-left: 4px solid #5865F2;
            border-radius: 6px;
            padding: 12px 14px;
            margin-top: 4px;
        }

        .embed-accent-line {
            width: 4px;
            background: #5865F2;
            border-radius: 2px;
            margin-right: 10px;
        }

        .embed-content {
            flex: 1;
        }

        .embed-title {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .embed-text {
            color: #b5bac1;
            font-size: 13px;
            line-height: 1.5;
        }

        .embed-text strong {
            color: #e3e5e8;
            font-weight: 600;
        }

        .embed-footer {
            margin-top: 14px;
            font-size: 12px;
            color: #8e939a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }

        .embed-footer .footer-channel {
            color: #f2f3f5;
            font-weight: 600;
        }

        .mock-typing {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 13px;
            color: #b5bac1;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #b5bac1;
            animation: typing 1.4s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {
            0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
            30% { opacity: 1; transform: translateY(-8px); }
        }

        .typing-text {
            font-size: 12px;
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--primary);
            width: 32px;
            border-radius: 6px;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .slider-arrow:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: 20px;
        }

        .slider-next {
            right: 20px;
        }

        /* Compact Bot Cards */
        .compact-bots {
            padding: 100px 40px;
            background: rgba(5, 8, 16, 0.5);
            position: relative;
            z-index: 1;
        }

        .compact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .compact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        @media (max-width: 1200px) {
            .compact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .compact-grid {
                grid-template-columns: 1fr;
            }
        }

        .compact-card {
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-premium);
        }

        .compact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top, rgba(168, 85, 247, 0.12), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .compact-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-glow);
            opacity: 0;
            border-radius: 20px;
            z-index: -1;
            transition: opacity 0.4s;
        }

        .compact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-premium), var(--shadow-glow);
        }

        .compact-card:hover::before {
            opacity: 1;
        }

        .compact-card:hover::after {
            opacity: 0.2;
        }

        .compact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            box-shadow: var(--shadow-glow);
            position: relative;
            z-index: 1;
            transition: transform 0.4s;
        }

        .compact-icon-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            display: none;
        }

        .compact-card:hover .compact-icon {
            transform: scale(1.1) rotateZ(5deg);
        }

        .compact-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }

        .compact-category {
            display: inline-block;
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid var(--border-premium);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            color: #A855F7;
        }

        .compact-desc {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        .compact-stats {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px 0;
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
            position: relative;
            z-index: 1;
        }

        .compact-stats span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .compact-actions {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .compact-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .compact-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .compact-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .compact-btn span {
            position: relative;
            z-index: 1;
        }

        .compact-btn-invite {
            background: var(--gradient-rainbow);
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .compact-btn-invite:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
        }

        .compact-btn-site {
            background: transparent;
            border: 2px solid var(--border-premium);
            color: #A855F7;
        }

        .compact-btn-site:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: #A855F7;
            transform: translateY(-2px);
        }

        /* Why Choose Section */
        .why-choose {
            padding: 100px 40px;
            position: relative;
            z-index: 1;
        }

        .why-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 60px auto 0;
        }

        .feature-card {
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 18px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-premium);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(168, 85, 247, 0.08), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: var(--gradient-glow);
            opacity: 0;
            border-radius: 18px;
            z-index: -1;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-premium), var(--shadow-glow);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover::after {
            opacity: 0.15;
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 24px;
            background: var(--gradient-rainbow);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            transition: all 0.4s;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, #A855F7, #EC4899, #3B82F6);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotateY(15deg);
            box-shadow: 0 20px 50px rgba(168, 85, 247, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .feature-card:hover .feature-icon::before {
            opacity: 1;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 14px;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            letter-spacing: -0.3px;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 14px;
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        /* Responsive features */
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                min-height: auto;
                padding: 35px 25px;
            }

            .feature-icon {
                width: 80px;
                height: 80px;
                font-size: 38px;
            }
        }

        /* Responsive Showcase */
        @media (max-width: 968px) {
            .showcase-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }

            .showcase-title {
                font-size: 40px;
            }

            .showcase-description {
                font-size: 16px;
            }

            .showcase-visual {
                height: 450px;
            }

            .visual-card {
                max-width: 100%;
            }

            .slider-arrow {
                display: none;
            }

            .compact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .bot-showcase {
                padding: 60px 20px;
            }

            .showcase-content {
                padding: 30px 25px;
            }

            .showcase-title {
                font-size: 32px;
            }

            .showcase-features {
                gap: 8px;
            }

            .feature-tag {
                font-size: 12px;
                padding: 8px 14px;
            }

            .showcase-stats-inline {
                gap: 20px;
            }

            .inline-stat-value {
                font-size: 24px;
            }

            .showcase-actions {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                justify-content: center;
            }

            .showcase-visual {
                height: 350px;
            }

            .compact-bots {
                padding: 60px 20px;
            }

            .compact-card {
                padding: 25px;
            }

            .why-choose {
                padding: 60px 20px;
            }
        }

        /* CTA Section */
        .cta {
            padding: 120px 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 30px;
            padding: 80px 60px;
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-premium), var(--shadow-gold);
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.15), transparent 60%);
            animation: rotate-slow 15s linear infinite;
        }

        @keyframes rotate-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-content::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--gradient-glow);
            border-radius: 30px;
            opacity: 0.2;
            z-index: -1;
        }

        .cta-content > * {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 48px;
            font-weight: 900;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            margin-bottom: 25px;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta p {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            background: var(--bg-darker);
            padding: 80px 40px 40px;
            border-top: 1px solid var(--border-premium);
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 25px;
            color: #A855F7;
            font-family: 'Space Grotesk', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }

        .footer-section ul li a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s;
            color: #A855F7;
        }

        .footer-section ul li a:hover {
            color: #A855F7;
            padding-left: 20px;
        }

        .footer-section ul li a:hover::before {
            opacity: 1;
            left: 0;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid var(--border-premium);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: var(--text-secondary);
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--bg-premium);
            border: 1px solid var(--border-premium);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--gradient-rainbow);
            border-color: #A855F7;
            color: white;
            transform: translateY(-3px) rotate(5deg);
            box-shadow: var(--shadow-glow);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 56px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .stats {
                gap: 30px;
            }

            .section-title {
                font-size: 40px;
            }

            .showcase-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }

            .showcase-title {
                font-size: 40px;
            }

            .showcase-description {
                font-size: 16px;
            }

            .showcase-visual {
                height: 450px;
            }

            .visual-card {
                max-width: 100%;
            }

            .slider-arrow {
                display: none;
            }

            .compact-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cta-content {
                padding: 60px 40px;
            }

            .cta h2 {
                font-size: 36px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .nav-container {
                padding: 15px 20px;
            }

            .logo {
                font-size: 22px;
            }

            .logo-icon {
                width: 48px;
                height: 48px;
            }

            .nav-buttons {
                gap: 10px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .hero {
                margin-top: 80px;
                padding: 60px 20px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .stat-item {
                min-width: auto;
                flex: 1;
                padding: 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .bot-showcase {
                padding: 60px 20px;
            }

            .showcase-content {
                padding: 30px 25px;
            }

            .showcase-title {
                font-size: 32px;
            }

            .showcase-features {
                gap: 8px;
            }

            .feature-tag {
                font-size: 12px;
                padding: 8px 14px;
            }

            .showcase-stats-inline {
                gap: 20px;
                flex-wrap: wrap;
            }

            .inline-stat-value {
                font-size: 24px;
            }

            .showcase-actions {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                justify-content: center;
                padding: 16px 32px;
            }

            .showcase-visual {
                height: 350px;
            }

            .mock-discord {
                font-size: 13px;
            }

            .mock-header {
                padding: 12px 15px;
            }

            .mock-messages {
                padding: 15px;
            }

            .mock-avatar {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .compact-bots {
                padding: 60px 20px;
            }

            .compact-card {
                padding: 25px;
            }

            .compact-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }

            .why-choose {
                padding: 60px 20px;
            }

            .feature-card {
                padding: 30px 25px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }

            .cta {
                padding: 80px 20px;
            }

            .cta-content {
                padding: 40px 25px;
            }

            .cta h2 {
                font-size: 28px;
            }

            .cta p {
                font-size: 16px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .animated-bg::before,
            .star,
            .constellation-line,
            .visual-card,
            .visual-glow,
            .hero-badge,
            .feature-card,
            .compact-card,
            .btn,
            .compact-btn,
            .slider-dot,
            .slider-arrow {
                animation: none !important;
            }
        }

        .collection-empty {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--text-secondary);
            padding: 40px 20px;
            border: 1px dashed var(--border);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.02);
        }

        .compact-btn[hidden],
        .showcase-actions .btn[hidden] {
            display: none !important;
        }
