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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0e1a;
            color: #e0e6ed;
            line-height: 1.6;
            overflow-x: hidden;
        }
        html {
            scroll-behavior: smooth;
        }
        /* Animated Background */
   .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0e1a, #1a1f2e, #2a2f42);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

.fireflies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
        .firefly {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffeb3b;
            border-radius: 50%;
            box-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffeb3b, 0 0 30px #ffeb3b;
            animation: fly 20s linear infinite;
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1001;
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, #6ab6a2, #4a8fc8);
            width: 0%;
            transition: width 0.3s ease;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes fly {
            0% {
                transform: translateY(100vh) translateX(-100px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Fixed Header Styling */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 50px;
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(106, 182, 162, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 12px 50px;
            background: rgba(10, 14, 26, 0.98);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #0a0e1a;
            transition: transform 0.3s ease;
            font-size: 18px;
        }

        .logo-img:hover {
            transform: scale(1.05) rotate(3deg);
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Improved Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
        }

        .nav-link {
            color: #e0e6ed;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link:hover {
            color: #6ab6a2;
            transform: translateY(-1px);
        }

        .nav-link.active {
            color: #6ab6a2;
        }

        .nav-link.active::before {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 20px 60px;
        }

        .hero-content {
            max-width: 800px;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #6ab6a2;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #b0c4de;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .command-highlight {
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            padding: 2px 8px;
            border-radius: 4px;
            color: #0a0e1a;
            font-weight: bold;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-primary {
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            color: #0a0e1a;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(106, 182, 162, 0.3);
        }

        .cta-secondary {
            border: 2px solid #6ab6a2;
            color: #6ab6a2;
        }

        .cta-secondary:hover {
            background: #6ab6a2;
            color: #0a0e1a;
            transform: translateY(-3px);
        }

        /* Features Section */
        #features {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(26, 31, 46, 0.6);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(106, 182, 162, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(26, 31, 46, 0.8);
            border-color: rgba(106, 182, 162, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #6ab6a2;
            margin-bottom: 15px;
        }

        .feature-description {
            color: #b0c4de;
            line-height: 1.6;
        }

        /* Connect Section */
        .connect-section {
            padding: 100px 50px;
            background: rgba(26, 31, 46, 0.3);
        }

        .connect-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .connect-container h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-subtitle {
            font-size: 1.2rem;
            color: #b0c4de;
            margin-bottom: 50px;
        }

        .platform-tabs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab {
            padding: 12px 24px;
            background: transparent;
            border: 2px solid rgba(106, 182, 162, 0.3);
            color: #e0e6ed;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .tab.active,
        .tab:hover {
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            color: #0a0e1a;
            border-color: transparent;
        }

        .tab-content {
            display: none;
            text-align: left;
            background: rgba(10, 14, 26, 0.6);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(106, 182, 162, 0.2);
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h3 {
            color: #6ab6a2;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .tab-content h4 {
            color: #4a8fc8;
            margin: 30px 0 15px;
            font-size: 1.2rem;
        }

        .tab-content ol {
            color: #e0e6ed;
            padding-left: 20px;
        }

        .tab-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .tab-content code {
            background: rgba(106, 182, 162, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            color: #6ab6a2;
        }

        .tab-content pre {
            background: rgba(10, 14, 26, 0.8);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #6ab6a2;
            margin: 10px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .tab-content pre:hover {
            background: rgba(10, 14, 26, 0.9);
        }

        .tab-content kbd {
            background: #2a2f42;
            padding: 2px 6px;
            border-radius: 3px;
            border: 1px solid #4a4f62;
            color: #e0e6ed;
        }

        .download-btn {
            color: #6ab6a2;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #6ab6a2;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
        }

        .download-btn:hover {
            background: #6ab6a2;
            color: #0a0e1a;
        }

        /* Footer */
      footer {
    background-color: #0f0f0f;
    color: #ccc;
    padding: 4rem 2rem;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 18px;
}

.footer-section p {
    line-height: 1.6;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00aaff;
}

.footer-section .socials img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-section .socials img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 14px;
    color: #666;
}

        .social-icon {
            color: #6ab6a2;
            text-decoration: none;
            margin: 0 20px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #4a8fc8;
            transform: translateY(-2px);
        }

        .copyright {
            color: #b0c4de;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .nav-menu {
                gap: 5px;
            }

            .nav-link {
                padding: 8px 15px;
                font-size: 0.9rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            #features,
            .connect-section {
                padding: 60px 20px;
            }

            .platform-tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab-content {
                padding: 20px;
            }

            footer {
                padding: 30px 20px;
            }

            .social-icon {
                margin: 0 10px;
                display: inline-block;
                margin-bottom: 10px;
            }
        }

        @keyframes glow {
            0% {
                text-shadow: 0 0 20px rgba(106, 182, 162, 0.5);
            }
            100% {
                text-shadow: 0 0 30px rgba(74, 143, 200, 0.5);
            }
        }
        /* Enhanced Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 20px 50px;
            position: relative;
        }

        .hero-content {
            max-width: 1000px;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite alternate;
            text-shadow: 0 0 30px rgba(106, 182, 162, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 40px;
            color: #b0b8c8;
            font-weight: 300;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-description {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 50px;
            color: #9aa0b0;
            line-height: 1.8;
            animation: fadeInUp 1s ease 1s both;
        }

        .command-highlight {
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 8px;
            border: 2px solid rgba(106, 182, 162, 0.3);
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            animation: fadeInUp 1s ease 1.5s both;
        }

        .cta-btn {
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            color: #0a0e1a;
        }

        .cta-secondary {
            background: transparent;
            color: #6ab6a2;
            border: 2px solid #6ab6a2;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(106, 182, 162, 0.4);
        }

        .cta-secondary:hover {
            background: #6ab6a2;
            color: #0a0e1a;
        }

        /* Enhanced Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 80px 0;
            padding: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card {
            background: rgba(42, 47, 66, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(106, 182, 162, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(106, 182, 162, 0.1), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }

        .feature-card:hover::before {
            transform: rotate(45deg) translate(50%, 50%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #6ab6a2;
            box-shadow: 0 20px 40px rgba(106, 182, 162, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #e0e6ed;
        }

        .feature-description {
            color: #b0b8c8;
            line-height: 1.6;
        }

        /* Enhanced Connect Section */
        .connect-section {
            padding: 100px 20px;
            background: rgba(16, 20, 32, 0.9);
            backdrop-filter: blur(20px);
            margin: 50px 0;
        }

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

        .connect-section h2 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-subtitle {
            font-size: 1.3rem;
            color: #b0b8c8;
            margin-bottom: 50px;
        }

        .platform-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab {
            padding: 15px 30px;
            background: rgba(42, 47, 66, 0.8);
            border: 2px solid rgba(106, 182, 162, 0.3);
            color: #b0b8c8;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .tab.active::before,
        .tab:hover::before {
            left: 0;
        }

        .tab.active,
        .tab:hover {
            color: #0a0e1a;
            border-color: #6ab6a2;
            transform: translateY(-2px);
        }

        .tab-content {
            display: none;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
            background: rgba(42, 47, 66, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(106, 182, 162, 0.3);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .tab-content.active {
            display: block;
            animation: slideInUp 0.5s ease;
        }

        .tab-content h3 {
            color: #6ab6a2;
            margin-bottom: 25px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .tab-content h4 {
            color: #4a8fc8;
            margin: 30px 0 15px;
            font-size: 1.3rem;
        }

        .tab-content ol {
            padding-left: 25px;
            counter-reset: step-counter;
        }

        .tab-content li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }

        .tab-content code,
        .tab-content pre {
            background: rgba(10, 14, 26, 0.9);
            padding: 12px 16px;
            border-radius: 8px;
            color: #6ab6a2;
            cursor: pointer;
            display: inline-block;
            margin: 5px 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(106, 182, 162, 0.3);
        }

        .tab-content pre {
            display: block;
            white-space: pre-wrap;
            word-break: break-all;
        }

        .tab-content pre:hover {
            background: rgba(10, 14, 26, 1);
            border-color: #6ab6a2;
            transform: scale(1.02);
        }

        .download-btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #6ab6a2, #4a8fc8);
            color: #0a0e1a;
            text-decoration: none;
            border-radius: 25px;
            margin: 8px 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(106, 182, 162, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 182, 162, 0.4);
        }

        /* Enhanced Footer */
               footer {
            width: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f0f 100%);
            color: #e0e6ed;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00aaff, #6ab6a2, transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-section {
            position: relative;
            padding: 1.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .footer-section:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 170, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 700;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(45deg, #00aaff, #6ab6a2);
            border-radius: 2px;
        }

        .footer-section p {
            line-height: 1.7;
            font-size: 15px;
            color: #b8c5d6;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

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

        .footer-section ul li a {
            color: #b8c5d6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-section ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1));
            transition: width 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #00aaff;
            background: rgba(0, 170, 255, 0.1);
            transform: translateX(8px);
        }

        .footer-section ul li a:hover::before {
            width: 100%;
        }

        .footer-section ul li a i {
            width: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover i {
            transform: scale(1.2);
            color: #6ab6a2;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(0, 170, 255, 0.05);
            border-color: rgba(0, 170, 255, 0.2);
            transform: translateX(5px);
        }

        .contact-item i {
            color: #6ab6a2;
            font-size: 18px;
            width: 24px;
            text-align: center;
        }

        .contact-item span {
            font-weight: 500;
            color: #e0e6ed;
        }

        .socials {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00aaff, #6ab6a2);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 170, 255, 0.3);
        }

        .social-link:hover::before {
            left: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .footer-bottom p {
            color: #8a9ba8;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .heart {
            color: #ff6b6b;
            animation: heartbeat 2s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .server-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(45deg, #00aa44, #22dd66);
            color: white;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1rem 1rem;
            }

            .footer-section {
                padding: 1rem;
            }

            .footer-section h3 {
                font-size: 1.2rem;
            }

            .socials {
                justify-content: center;
            }

            .footer-bottom p {
                flex-direction: column;
                gap: 4px;
            }
        }

        /* Background Animation */
        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(106, 182, 162, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(42, 47, 66, 0.5);
            z-index: 1001;
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, #6ab6a2, #4a8fc8, #ffeb3b);
            width: 0;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(106, 182, 162, 0.5);
        }

        /* Animations */
        @keyframes titleGlow {
            0% { text-shadow: 0 0 30px rgba(106, 182, 162, 0.3); }
            100% { text-shadow: 0 0 50px rgba(106, 182, 162, 0.6), 0 0 80px rgba(74, 143, 200, 0.3); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                gap: 15px;
            }

            .nav-link {
                padding: 8px 15px;
                font-size: 0.9rem;
            }

            .hero {
                padding: 120px 20px 50px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .platform-tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab {
                width: 100%;
                max-width: 300px;
            }

            .tab-content {
                padding: 25px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
.features-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6ab6a2, #4a8fc8, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

.section-description {
    font-size: 1.2rem;
    color: #b0c4de;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6ab6a2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.6;
}

.fireflies-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.feature-firefly {
       position: absolute;
            width: 4px;
            height: 4px;
            background: #ffeb3b;
            border-radius: 50%;
            box-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffeb3b, 0 0 30px #ffeb3b;
            animation: fly 20s linear infinite;
            z-index: -1;
}

@keyframes feature-fly {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
}
/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a1a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.loading-logo img {
    max-width: 150px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loading-progress {
    margin-top: 40px;
}

.loading-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loading-progress-inner {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff6b00, #ffb800);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loading-text {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Fireflies for loading screen */
.loading-fireflies {
    position: relative;
    height: 100px;
    margin: 20px 0;
}

.loading-firefly {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffb800;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 4s infinite ease-in-out;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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