* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --color-bg: #0a0a0a;
            --color-bg-secondary: #111111;
            --color-bg-tertiary: #1a1a1a;
            --color-text: #ffffff;
            --color-text-secondary: #a0a0a0;
            --color-primary: #6366f1;
            --color-primary-dark: #4f46e5;
            --color-border: #2a2a2a;
            --color-card-bg: #141414;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-bg);
            overflow-x: hidden;
            padding-bottom: 80px; /* Space for bottom menu bar */
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 70px; /* Smaller space on mobile */
            }
        }
        
        /* Header */
        header {
            background: rgba(10, 10, 10, 0.8);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 1.75rem;
            filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
        }
        
        .nav-links {
            display: none; /* Hidden - moved to floating buttons */
            gap: 2rem;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--color-text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: var(--color-text);
        }
        
        .header-controls {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .user-menu-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .user-icon-btn {
            background: transparent;
            border: 1px solid var(--color-border);
            color: var(--color-text-secondary);
            padding: 0.5rem 0.75rem;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            transition: all 0.2s;
        }
        
        .user-icon-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-text);
            background: var(--color-bg-tertiary);
        }
        
        .user-menu-content {
            display: none;
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow: hidden;
        }
        
        .user-menu-dropdown.active .user-menu-content {
            display: block;
        }
        
        .user-menu-item {
            padding: 0.75rem 1rem;
            color: var(--color-text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        
        .user-menu-item:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
        }
        
        .user-menu-divider {
            height: 1px;
            background: var(--color-border);
            margin: 0.5rem 0;
        }
        
        .user-menu-lang-section {
            padding: 0.5rem 0;
        }
        
        .user-menu-lang-label {
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .user-menu-lang-item {
            padding: 0.5rem 1rem;
            color: var(--color-text-secondary);
            text-decoration: none;
            display: block;
            transition: all 0.2s;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        
        .user-menu-lang-item:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
        }
        
        .user-menu-lang-item.active {
            color: var(--color-primary);
            background: var(--color-bg-tertiary);
        }
        
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-btn {
            background: transparent;
            border: 1px solid var(--color-border);
            color: var(--color-text-secondary);
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }
        
        .dropdown-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-text);
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            min-width: 150px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow: hidden;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-item {
            padding: 0.75rem 1rem;
            color: var(--color-text-secondary);
            text-decoration: none;
            display: block;
            transition: all 0.2s;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        
        .dropdown-item:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
        }
        
        .dropdown-item.active {
            color: var(--color-primary);
            background: var(--color-bg-tertiary);
        }
        
        .dark-mode-toggle {
            background: transparent;
            border: 1px solid var(--color-border);
            color: var(--color-text-secondary);
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }
        
        .dark-mode-toggle:hover {
            border-color: var(--color-primary);
            color: var(--color-text);
        }
        
        .social-links {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        
        .social-link {
            color: var(--color-text-secondary);
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.2s;
            padding: 0.5rem;
            border-radius: 6px;
        }
        
        .social-link:hover {
            color: var(--color-primary);
            background: var(--color-bg-tertiary);
        }
        
        .nav-link-btn {
            text-decoration: none;
            color: var(--color-text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-link-btn:hover {
            color: var(--color-text);
            background: var(--color-bg-tertiary);
        }
        
        .discord-btn {
            background: #5865F2;
            color: white;
            border: none;
        }
        
        .discord-btn:hover {
            background: #4752C4;
            color: white;
            transform: translateY(-1px);
        }
        
        .download-btn {
            background: var(--color-primary);
            color: white;
            border: none;
        }
        
        .download-btn:hover {
            background: var(--color-primary-dark);
            color: white;
            transform: translateY(-1px);
        }
        
        .btn {
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: all 0.2s;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }
        
        .btn-secondary {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
            border: 1px solid var(--color-border);
        }
        
        .btn-secondary:hover {
            background: var(--color-bg-secondary);
            border-color: var(--color-primary);
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 8rem 2rem 6rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 3rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 26px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        
        .hero-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
            border-radius: 26px;
        }
        
        .hero-logo-icon {
            font-size: 4rem;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }
        
        .hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero .subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--color-text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-cta .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        /* Apps Grid Section */
        .apps-section {
            padding: 6rem 2rem;
            background: var(--color-bg-secondary);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-header p {
            font-size: 1.25rem;
            color: var(--color-text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        
        .category-section {
            margin-bottom: 5rem;
        }
        
        .category-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--color-border);
        }
        
        .category-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .category-description {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            max-width: 700px;
        }
        
        .app-card {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: var(--color-primary);
            background: var(--color-bg-tertiary);
        }
        
        .app-card:hover::before {
            transform: scaleX(1);
        }
        
        .app-icon {
            font-size: 3.5rem;
            margin-bottom: 1.25rem;
            display: block;
            filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
        }
        
        .app-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--color-text);
        }
        
        .app-card p {
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .app-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        
        .app-tag {
            background: var(--color-bg-secondary);
            color: var(--color-text-secondary);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            border: 1px solid var(--color-border);
        }
        
        .app-link {
            color: var(--color-primary);
            font-weight: 500;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .app-link::after {
            content: '→';
            transition: transform 0.2s;
        }
        
        .app-card:hover .app-link::after {
            transform: translateX(6px);
        }
        
        /* Features Section */
        .features-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-item {
            padding: 2rem;
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            transition: all 0.3s;
        }
        
        .feature-item:hover {
            border-color: var(--color-primary);
            transform: translateY(-4px);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .feature-item p {
            color: var(--color-text-secondary);
            line-height: 1.7;
        }
        
        /* Try AI Store Section */
        .try-section {
            padding: 6rem 2rem;
            background: var(--color-bg-secondary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .try-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            z-index: 0;
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }
        
        .try-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .try-section h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .try-section p {
            font-size: 1.25rem;
            color: var(--color-text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .try-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .try-buttons .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .try-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .try-feature {
            text-align: center;
        }
        
        .try-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
        }
        
        .try-feature h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }
        
        .try-feature p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            margin: 0;
        }
        
        /* Trusted By Section */
        .trusted-section {
            padding: 4rem 2rem;
            background: var(--color-bg-secondary);
            text-align: center;
        }
        
        .trusted-section h3 {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }
        
        .trusted-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.6;
        }
        
        .trusted-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-secondary);
            filter: grayscale(100%);
            transition: all 0.3s;
        }
        
        .trusted-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            color: var(--color-text);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--color-text-secondary);
        }
        
        /* Showcase Section */
        .showcase-section {
            padding: 6rem 2rem;
            background: var(--color-bg-secondary);
            position: relative;
        }
        
        .showcase-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .showcase-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .showcase-text p {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .showcase-demo {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 2rem;
            overflow: hidden;
            position: relative;
        }
        
        .code-block {
            background: var(--color-bg);
            border-radius: 8px;
            padding: 1.5rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.85rem;
            line-height: 1.6;
            overflow-x: auto;
        }
        
        .code-line {
            color: var(--color-text-secondary);
            margin-bottom: 0.5rem;
        }
        
        .code-keyword {
            color: #c678dd;
        }
        
        .code-string {
            color: #98c379;
        }
        
        .code-comment {
            color: #5c6370;
            font-style: italic;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-card {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            font-size: 0.875rem;
            color: var(--color-text-secondary);
        }
        
        /* Benefits Section */
        .benefits-section {
            padding: 6rem 2rem;
            background: var(--color-bg-secondary);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-card {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-primary);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .benefit-card p {
            color: var(--color-text-secondary);
            line-height: 1.7;
        }
        
        /* Integration Section */
        .integration-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
        }
        
        .integration-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .integration-badge {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s;
        }
        
        .integration-badge:hover {
            border-color: var(--color-primary);
            transform: translateY(-2px);
        }
        
        .integration-badge span {
            font-size: 1.25rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: var(--color-bg-secondary);
        }
        
        .faq-list {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        
        .faq-item {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: var(--color-primary);
        }
        
        .faq-question {
            font-size: 1.125rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 1rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Community Section */
        .community-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
            text-align: center;
        }
        
        .community-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        /* Responsive adjustments for new sections */
        @media (max-width: 768px) {
            .showcase-content {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-logo {
                width: 100px;
                height: 100px;
                margin: 0 auto 2rem;
            }
            
            .hero-logo-icon {
                font-size: 3rem;
            }
            
            .user-menu-content {
                min-width: 180px;
                right: 0;
            }
            
            .footer-bottom-right {
                flex-direction: column;
                align-items: flex-end;
                gap: 1rem;
            }
            
            nav {
                padding: 1rem;
            }
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--color-bg);
            text-align: center;
            position: relative;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .cta-section h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            color: var(--color-text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 4rem 2rem 2rem;
            background: var(--color-bg);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-text);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--color-text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .footer-column a:hover {
            color: var(--color-primary);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer-bottom-left {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-bottom p {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .footer-bottom-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        /* Impressum Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s;
            width: 100%;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .modal-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-text);
        }
        
        .modal-close {
            background: transparent;
            border: none;
            color: var(--color-text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.2s;
        }
        
        .modal-close:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
        }
        
        .modal-body {
            color: var(--color-text-secondary);
            line-height: 1.8;
        }
        
        .modal-body h3 {
            color: var(--color-text);
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .modal-body h3:first-child {
            margin-top: 0;
        }
        
        .modal-body p {
            margin-bottom: 1rem;
        }
        
        .modal-body a {
            color: var(--color-primary);
            text-decoration: none;
        }
        
        .modal-body a:hover {
            text-decoration: underline;
        }
        
        /* Sign In Modal */
        .signin-providers {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .provider-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.875rem 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--color-border);
            background: var(--color-card-bg);
            color: var(--color-text);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            width: 100%;
        }
        
        .provider-btn:hover {
            background: var(--color-bg-tertiary);
            border-color: var(--color-primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        .provider-btn.github {
            border-color: #333;
        }
        
        .provider-btn.github:hover {
            background: #333;
            color: white;
        }
        
        .provider-btn.google {
            border-color: #4285f4;
        }
        
        .provider-btn.google:hover {
            background: #4285f4;
            color: white;
        }
        
        .provider-btn.discord {
            border-color: #5865F2;
        }
        
        .provider-btn.discord:hover {
            background: #5865F2;
            color: white;
        }
        
        .provider-icon {
            font-size: 1.25rem;
        }
        
        .signin-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
            color: var(--color-text-secondary);
            font-size: 0.85rem;
        }
        
        .signin-divider::before,
        .signin-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--color-border);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero {
                padding: 4rem 1.5rem 3rem;
            }
            
            .apps-section,
            .features-section,
            .cta-section {
                padding: 4rem 1.5rem;
            }
            
            .apps-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-cta .btn {
                width: 100%;
            }
        }
        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--color-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--color-border);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary);
        }
        
        /* Floating YouTube Music Player */
        .youtube-music-player {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
        }
        
        /* Floating Buttons Container - Stack them vertically */
        .floating-buttons-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 9999;
        }
        
        .youtube-player-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .youtube-player-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
        }
        
        .youtube-player-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }
        
        .youtube-player-window {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 400px;
            height: 300px;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 2px solid var(--color-primary);
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
        }
        
        .youtube-player-window.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .youtube-player-header {
            background: var(--color-bg-tertiary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
        }
        
        .youtube-player-header h3 {
            margin: 0;
            font-size: 14px;
            color: var(--color-text);
            font-weight: 600;
        }
        
        .youtube-player-close {
            background: none;
            border: none;
            color: var(--color-text-secondary);
            cursor: pointer;
            font-size: 20px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .youtube-player-close:hover {
            background: var(--color-border);
            color: var(--color-text);
        }
        
        .youtube-player-content {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .youtube-player-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @media (max-width: 768px) {
            .youtube-player-window {
                width: calc(100vw - 40px);
                right: 20px;
                left: 20px;
                max-width: 400px;
                height: 250px;
            }
        }
        
        /* Floating Navigation Menu */
        .floating-nav-menu {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9999;
            display: none; /* Hide the menu button */
        }
        
        .floating-nav-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
            font-size: 28px;
        }
        
        .floating-nav-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
        }
        
        .floating-nav-window {
            position: fixed;
            bottom: 90px;
            left: 20px;
            width: 280px;
            max-height: 400px;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 2px solid var(--color-primary);
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
        }
        
        .floating-nav-window.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        
        .floating-nav-header {
            background: var(--color-bg-tertiary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
        }
        
        .floating-nav-header h3 {
            margin: 0;
            font-size: 14px;
            color: var(--color-text);
            font-weight: 600;
        }
        
        .floating-nav-close {
            background: none;
            border: none;
            color: var(--color-text-secondary);
            cursor: pointer;
            font-size: 20px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .floating-nav-close:hover {
            background: var(--color-border);
            color: var(--color-text);
        }
        
        .floating-nav-content {
            padding: 15px;
            overflow-y: auto;
            max-height: 350px;
        }
        
        .floating-nav-item {
            display: block;
            padding: 12px 15px;
            color: var(--color-text);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 8px;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
        }
        
        .floating-nav-item:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-primary);
            transform: translateX(5px);
        }
        
        /* Floating Chatbot */
        .floating-chatbot {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 9999;
        }
        
        .floating-chatbot-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
            font-size: 28px;
        }
        
        .floating-chatbot-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
        }
        
        .floating-chatbot-window {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 400px;
            height: 500px;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 2px solid var(--color-primary);
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
        }
        
        .floating-chatbot-window.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        
        .floating-chatbot-header {
            background: var(--color-bg-tertiary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
        }
        
        .floating-chatbot-header h3 {
            margin: 0;
            font-size: 14px;
            color: var(--color-text);
            font-weight: 600;
        }
        
        .floating-chatbot-close {
            background: none;
            border: none;
            color: var(--color-text-secondary);
            cursor: pointer;
            font-size: 20px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .floating-chatbot-close:hover {
            background: var(--color-border);
            color: var(--color-text);
        }
        
        .floating-chatbot-content {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .chat-message {
            padding: 10px 15px;
            border-radius: 12px;
            max-width: 80%;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .chat-message.user {
            background: var(--color-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }
        
        .chat-message.assistant {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        
        .floating-chatbot-input-area {
            padding: 15px;
            border-top: 1px solid var(--color-border);
            display: flex;
            gap: 10px;
        }
        
        .floating-chatbot-input {
            flex: 1;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 10px 15px;
            color: var(--color-text);
            font-size: 14px;
            outline: none;
        }
        
        .floating-chatbot-input:focus {
            border-color: var(--color-primary);
        }
        
        .floating-chatbot-send {
            background: var(--color-primary);
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .floating-chatbot-send:hover {
            background: var(--color-primary-dark);
            transform: scale(1.05);
        }
        
        .floating-chatbot-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .chat-loading {
            display: flex;
            gap: 5px;
            padding: 10px 15px;
        }
        
        .chat-loading span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-primary);
            animation: bounce 1.4s infinite ease-in-out;
        }
        
        .chat-loading span:nth-child(1) { animation-delay: -0.32s; }
        .chat-loading span:nth-child(2) { animation-delay: -0.16s; }
        
        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }
        
        /* Floating Action Button Menu */
        .fab-menu {
            position: fixed;
            bottom: 90px;
            right: 30px;
            z-index: 9999;
        }
        
        .fab-items {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 64px;
            height: 64px;
        }
        
        .fab-main {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
            font-size: 28px;
            position: relative;
            z-index: 10;
            color: white;
        }
        
        .fab-main:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
        }
        
        .fab-main.active {
            transform: rotate(45deg);
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        }
        
        .fab-items {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 64px;
            height: 64px;
        }
        
        .fab-item {
            position: absolute;
            width: 56px;
            height: 56px;
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 50%;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 1;
            transform: scale(1) rotate(0deg);
            pointer-events: all;
            visibility: visible;
            font-size: 20px;
            text-decoration: none;
            color: var(--color-text);
            z-index: 5;
        }
        
        .fab-menu.active .fab-item {
            opacity: 1 !important;
            transform: scale(1) rotate(360deg) !important;
            pointer-events: all !important;
            visibility: visible !important;
        }
        
        .fab-item:hover {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
            background: var(--color-bg-tertiary);
            border-color: var(--color-primary);
        }
        
        .fab-item.chat {
            bottom: 80px;
            right: 0;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
        }
        
        .fab-item.navigation {
            bottom: 0;
            right: 80px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            border: none;
        }
        
        .fab-item.social {
            bottom: -60px;
            right: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            border: none;
        }
        
        .fab-item.youtube {
            bottom: 0;
            right: -80px;
        }
        
        .fab-item.download {
            bottom: -100px;
            right: 0;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            border: none;
        }
        
        .fab-item.discord {
            bottom: -60px;
            right: -60px;
        }
        
        .fab-item.twitter {
            bottom: -140px;
            right: 60px;
        }
        
        .fab-item.linkedin {
            bottom: -140px;
            right: 0;
        }
        
        .fab-item.github {
            bottom: -100px;
            right: -60px;
        }
        
        .fab-menu.active .fab-item.chat {
            transition-delay: 0.05s;
        }
        
        .fab-menu.active .fab-item.navigation {
            transition-delay: 0.1s;
        }
        
        .fab-menu.active .fab-item.social {
            transition-delay: 0.15s;
        }
        
        .fab-menu.active .fab-item.youtube {
            transition-delay: 0.2s;
        }
        
        .fab-menu.active .fab-item.download {
            transition-delay: 0.25s;
        }
        
        .fab-menu.active .fab-item.discord {
            transition-delay: 0.3s;
        }
        
        .fab-menu.active .fab-item.twitter {
            transition-delay: 0.35s;
        }
        
        .fab-menu.active .fab-item.linkedin {
            transition-delay: 0.4s;
        }
        
        .fab-menu.active .fab-item.github {
            transition-delay: 0.45s;
        }
        
        @media (max-width: 768px) {
            .fab-menu {
                bottom: 90px;
                right: 20px;
            }
            
            .fab-main {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
            
            .fab-item {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }
            
            .fab-item.chat {
                bottom: 70px;
            }
            
            .fab-item.navigation {
                right: 70px;
            }
            
            .fab-item.social {
                bottom: -50px;
                right: 50px;
            }
            
            .fab-item.youtube {
                right: -70px;
            }
            
            .fab-item.download {
                bottom: -85px;
            }
            
            .fab-item.discord {
                bottom: -50px;
                right: -50px;
            }
            
            .fab-item.twitter {
                bottom: -120px;
                right: 50px;
            }
            
            .fab-item.linkedin {
                bottom: -120px;
            }
            
            .fab-item.github {
                bottom: -85px;
                right: -50px;
            }
        }

        /* Bottom Menu Bar */
        .bottom-menu-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-bg-secondary);
            border-top: 2px solid var(--color-border);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 10000;
            padding: 10px 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .bottom-menu-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .bottom-menu-buttons::-webkit-scrollbar {
            display: none;
        }

        .bottom-menu-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            min-width: 70px;
            padding: 8px 12px;
            background: transparent;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--color-text);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
        }

        .bottom-menu-btn:hover {
            background: var(--color-bg-tertiary);
            transform: translateY(-2px);
        }

        .bottom-menu-btn.active {
            background: var(--color-primary);
            color: white;
        }

        .bottom-menu-btn .btn-icon {
            font-size: 24px;
            line-height: 1;
        }

        .bottom-menu-btn .btn-label {
            font-size: 11px;
            line-height: 1.2;
            white-space: nowrap;
        }

        /* Extended Panel */
        .bottom-menu-panel {
            position: fixed;
            bottom: 70px;
            left: 0;
            right: 0;
            max-height: calc(100vh - 140px);
            background: var(--color-bg-secondary);
            border-top: 2px solid var(--color-border);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .bottom-menu-panel.active {
            transform: translateY(0);
        }

        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--color-border);
            background: var(--color-bg);
        }

        .panel-title {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text);
        }

        .panel-close {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: var(--color-text);
            font-size: 24px;
            line-height: 1;
            transition: all 0.2s ease;
        }

        .panel-close:hover {
            background: var(--color-bg-tertiary);
        }

        .panel-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .panel-content .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .panel-content .app-card {
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--color-text);
            display: block;
        }

        .panel-content .app-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--color-primary);
        }

        .panel-content .custom-content {
            padding: 20px;
        }

        .panel-content .nav-items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .panel-content .nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--color-text);
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .panel-content .nav-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--color-primary);
        }

        .panel-content .youtube-info {
            padding: 20px;
            text-align: center;
        }

        .panel-content .youtube-info p {
            margin: 10px 0;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .bottom-menu-btn {
                min-width: 60px;
                padding: 6px 8px;
            }

            .bottom-menu-btn .btn-icon {
                font-size: 20px;
            }

            .bottom-menu-btn .btn-label {
                font-size: 10px;
            }

            .bottom-menu-panel {
                bottom: 60px;
                max-height: calc(100vh - 120px);
            }

            .panel-content .cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 16px;
            }
        }
        
        /* Floating Social Media Button */
        .floating-social {
            position: fixed;
            bottom: 160px;
            right: 20px;
            z-index: 9999;
        }
        
        .floating-social-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
            font-size: 28px;
        }
        
        .floating-social-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
        }
        
        .floating-social-window {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 280px;
            max-height: 400px;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 2px solid var(--color-primary);
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
        }
        
        .floating-social-window.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        
        .floating-social-header {
            background: var(--color-bg-tertiary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
        }
        
        .floating-social-header h3 {
            margin: 0;
            font-size: 14px;
            color: var(--color-text);
            font-weight: 600;
        }
        
        .floating-social-close {
            background: none;
            border: none;
            color: var(--color-text-secondary);
            cursor: pointer;
            font-size: 20px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .floating-social-close:hover {
            background: var(--color-border);
            color: var(--color-text);
        }
        
        .floating-social-content {
            padding: 15px;
            overflow-y: auto;
            max-height: 350px;
        }
        
        .floating-social-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            color: var(--color-text);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 8px;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
        }
        
        .floating-social-item:hover {
            background: var(--color-bg-tertiary);
            transform: translateX(5px);
        }
        
        .floating-social-item span:first-child {
            font-size: 20px;
        }
        
        @media (max-width: 768px) {
            .floating-chatbot-window {
                width: calc(100vw - 40px);
                right: 20px;
                left: 20px;
                max-width: 400px;
            }
            
            .floating-nav-window {
                width: calc(100vw - 40px);
                left: 20px;
                right: 20px;
                max-width: 280px;
            }
            
            .floating-chatbot {
                right: 20px;
                bottom: 160px;
            }
            
            .youtube-music-player {
                bottom: 100px;
                right: 20px;
            }
            
            .floating-nav-menu {
                bottom: 20px;
                left: 20px;
            }
            
            .floating-social {
                right: 20px;
                bottom: 230px;
            }
        }
        
        /* Search Bar Styles */
        .aistore-search-bar {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        
        .search-container {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .search-input-wrapper {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            color: var(--color-text);
            font-size: 1rem;
            transition: all 0.2s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }
        
        .search-button {
            padding: 0.75rem 1.5rem;
            background: var(--gradient-primary);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .search-button:hover {
            transform: scale(1.05);
        }
        
        .search-filters {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .filter-select {
            padding: 0.5rem 1rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            color: var(--color-text);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: var(--color-primary);
        }
        
        .clear-filters-btn {
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 6px;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .clear-filters-btn:hover {
            background: var(--color-bg-tertiary);
            color: var(--color-text);
        }
        
        .search-results {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        
        .search-results-header {
            margin-bottom: 1.5rem;
        }
        
        .search-results-header h3 {
            color: var(--color-text);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .search-category-section {
            margin-bottom: 2rem;
        }
        
        .search-category-section h4 {
            color: var(--color-text);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--color-border);
        }
        
        .search-loading,
        .search-error,
        .search-no-results {
            text-align: center;
            padding: 2rem;
            color: var(--color-text-secondary);
        }
        
        @media (max-width: 768px) {
            .aistore-search-bar {
                padding: 0 1rem;
            }
            
            .search-container {
                padding: 1rem;
            }
            
            .search-input-wrapper {
                flex-direction: column;
            }
            
            .search-filters {
                flex-direction: column;
            }
            
            .filter-select,
            .clear-filters-btn {
                width: 100%;
            }
        }
        
        /* Enhanced App Card Styles */
        .app-card-enhanced {
            position: relative;
        }
        
        .app-favorite-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            z-index: 10;
            backdrop-filter: blur(10px);
        }
        
        .app-favorite-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }
        
        .app-favorite-btn.favorited {
            background: rgba(255, 193, 7, 0.2);
        }
        
        .app-favorite-btn.favorited:hover {
            background: rgba(255, 193, 7, 0.3);
        }
        
        .favorite-icon {
            font-size: 1.2rem;
            line-height: 1;
        }
        
        .app-status-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 10;
        }
        
        .app-status-badge.status-active {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.5);
        }
        
        .app-status-badge.status-inactive {
            background: rgba(156, 163, 175, 0.2);
            color: #9ca3af;
            border: 1px solid rgba(156, 163, 175, 0.5);
        }
        
        /* Quick Launch Widget Styles */
        .quick-launch-widget {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        
        .quick-launch-container {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
        }
        
        .quick-launch-section {
            margin-bottom: 2rem;
        }
        
        .quick-launch-section:last-child {
            margin-bottom: 0;
        }
        
        .quick-launch-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-text);
        }
        
        .quick-launch-title span:first-child {
            font-size: 1.3rem;
        }
        
        .quick-launch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
        }
        
        .quick-launch-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            text-decoration: none;
            color: var(--color-text);
            transition: all 0.2s;
            text-align: center;
        }
        
        .quick-launch-item:hover {
            background: var(--color-bg);
            border-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        .quick-launch-icon {
            font-size: 2rem;
            line-height: 1;
        }
        
        .quick-launch-name {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 100%;
        }
        
        .quick-launch-item:hover .quick-launch-name {
            color: var(--color-text);
        }
        
        .quick-launch-empty {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--color-text-secondary);
        }
        
        .quick-launch-empty p {
            margin-bottom: 0.5rem;
        }
        
        .quick-launch-hint {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
        }
        
        @media (max-width: 768px) {
            .quick-launch-widget {
                padding: 0 1rem;
            }
            
            .quick-launch-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 0.75rem;
            }
            
            .quick-launch-item {
                padding: 0.75rem;
            }
            
            .quick-launch-icon {
                font-size: 1.5rem;
            }
            
            .quick-launch-name {
                font-size: 0.75rem;
            }
        }
        
        /* Recommendations Widget Styles */
        .recommendations-widget {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        
        .recommendations-container {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
        }
        
        .recommendations-header {
            margin-bottom: 1.5rem;
        }
        
        .recommendations-header h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }
        
        .recommendations-subtitle {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }
        
        .recommendations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
        }
        
        .recommendation-card {
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.2s;
        }
        
        .recommendation-card:hover {
            border-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        .recommendation-link {
            display: block;
            padding: 1rem;
            text-decoration: none;
            color: var(--color-text);
        }
        
        .recommendation-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        
        .recommendation-icon {
            font-size: 2rem;
        }
        
        .recommendation-reason {
            font-size: 0.75rem;
            color: var(--color-text-secondary);
            background: var(--color-bg);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }
        
        .recommendation-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }
        
        .recommendation-description {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .recommendation-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .recommendation-tag {
            font-size: 0.7rem;
            padding: 0.25rem 0.5rem;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 4px;
            color: var(--color-text-secondary);
        }
        
        /* Loading States */
        .loading-state,
        .error-state,
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
            text-align: center;
        }
        
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--color-border);
            border-top-color: var(--color-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .loading-message {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }
        
        .error-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .error-message {
            color: var(--color-text);
            margin-bottom: 1rem;
        }
        
        .error-retry-btn {
            padding: 0.5rem 1rem;
            background: var(--color-primary);
            border: none;
            border-radius: 6px;
            color: white;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s;
        }
        
        .error-retry-btn:hover {
            background: var(--color-primary-dark);
        }
        
        .empty-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .empty-message {
            color: var(--color-text-secondary);
        }
        
        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(4px);
        }
        
        .loading-overlay-content {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .loading-overlay-content .loading-spinner {
            margin-bottom: 0;
        }
        
        .loading-overlay-content p {
            color: var(--color-text);
            margin: 0;
        }
        
        /* Toast Notifications */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            color: var(--color-text);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 10001;
            transform: translateX(400px);
            opacity: 0;
            transition: all 0.3s ease;
            max-width: 300px;
        }
        
        .toast.show {
            transform: translateX(0);
            opacity: 1;
        }
        
        .toast-success {
            border-left: 4px solid #10b981;
        }
        
        .toast-error {
            border-left: 4px solid #ef4444;
        }
        
        .toast-info {
            border-left: 4px solid var(--color-primary);
        }
        
        @media (max-width: 768px) {
            .recommendations-widget {
                padding: 0 1rem;
            }
            
            .recommendations-grid {
                grid-template-columns: 1fr;
            }
            
            .toast {
                right: 1rem;
                left: 1rem;
                max-width: none;
            }
        }
        
        /* App Detail Modal Styles */
        .app-detail-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .app-detail-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .app-detail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
        }
        
        .app-detail-content {
            position: relative;
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .app-detail-modal.active .app-detail-content {
            transform: scale(1);
        }
        
        .app-detail-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--color-text);
            z-index: 10;
            transition: all 0.2s;
        }
        
        .app-detail-close:hover {
            background: var(--color-bg);
            transform: rotate(90deg);
        }
        
        .app-detail-header {
            padding: 2rem;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .app-detail-icon-wrapper {
            position: relative;
        }
        
        .app-detail-icon {
            font-size: 4rem;
            display: block;
        }
        
        .app-detail-favorite {
            position: absolute;
            top: -8px;
            right: -8px;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(10px);
        }
        
        .app-detail-favorite:hover {
            transform: scale(1.1);
        }
        
        .app-detail-favorite.favorited {
            background: rgba(255, 193, 7, 0.3);
        }
        
        .app-detail-title-section {
            flex: 1;
        }
        
        .app-detail-title {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }
        
        .app-detail-meta {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .app-detail-category {
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 4px;
            color: var(--color-text-secondary);
        }
        
        .app-detail-status-badge {
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .app-detail-status-badge.status-active {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.5);
        }
        
        .app-detail-body {
            padding: 2rem;
        }
        
        .app-detail-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .app-detail-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .app-detail-tag {
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            color: var(--color-text-secondary);
        }
        
        .app-detail-status {
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .app-detail-status-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .app-detail-status-item:last-child {
            margin-bottom: 0;
        }
        
        .status-label {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }
        
        .status-value {
            color: var(--color-text);
            font-weight: 500;
        }
        
        .app-detail-actions {
            display: flex;
            gap: 1rem;
        }
        
        .app-detail-launch-btn {
            flex: 1;
            padding: 0.75rem 1.5rem;
            background: var(--gradient-primary);
            border: none;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            transition: transform 0.2s;
        }
        
        .app-detail-launch-btn:hover {
            transform: translateY(-2px);
        }
        
        .app-detail-share-btn {
            padding: 0.75rem 1.5rem;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            color: var(--color-text);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .app-detail-share-btn:hover {
            background: var(--color-bg);
            border-color: var(--color-primary);
        }
        
        .app-card-info-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            z-index: 10;
            backdrop-filter: blur(10px);
            opacity: 0;
        }
        
        .app-card-enhanced:hover .app-card-info-btn {
            opacity: 1;
        }
        
        .app-card-info-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .app-detail-content {
                width: 95%;
                max-height: 95vh;
            }
            
            .app-detail-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .app-detail-actions {
                flex-direction: column;
            }
        }