* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Inter, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
            line-height: 1.6;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }
        .nav-group {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .logo {
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        .logo img {
            height: 80px;
            width: auto;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            position: relative;
            padding: 0.5rem 0;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        .nav-menu li a:hover {
            color: #00ffff;
            opacity: 1;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }
        .hamburger {
            display: none !important;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            text-align: center;
        }
        .mobile-menu.show {
            display: block;
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu li {
            margin: 3rem 0;
        }
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }
        .mobile-menu a:hover {
            opacity: 0.8;
        }
        .login-btn {
            position: relative;
            background: #000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .login-btn::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(to top, #1F1F1F, #4E4E4E);
            border-radius: 9px;
            z-index: -1;
        }
        .login-btn:hover {
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            nav {
                order: 3;
            }
            .hamburger {
                display: flex !important;
                order: 2;
            }
            .nav-container {
                padding: 0 1rem;
            }
            .nav-group {
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .nav-container {
                height: 50px;
            }
            .logo img {
                height: 64px;
            }
        }

        .hero {
            padding: 8rem 2rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 80%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .hero-title {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 1rem;
        }
        .hero-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.5);
            max-width: 600px;
            margin: 0 auto;
        }

        .tabs-section {
            max-width: 900px;
            margin: 0 auto 2rem;
            padding: 0 2rem;
        }
        .tabs-wrapper {
            display: flex;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 6px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .tab-btn {
            flex: 1;
            padding: 14px 24px;
            border: none;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            color: rgba(255, 255, 255, 0.5);
            background: transparent;
            font-family: inherit;
        }
        .tab-btn:hover {
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.04);
        }
        .tab-btn.active {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(74, 222, 128, 0.2));
            color: #fff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), 0 0 40px rgba(74, 222, 128, 0.08);
        }

        .content-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem 6rem;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-title::before {
            content: '';
            width: 3px;
            height: 20px;
            border-radius: 2px;
            background: linear-gradient(180deg, #00ffff, #4ade80);
            flex-shrink: 0;
        }
        .section-divider {
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin: 2rem 0;
        }
        .section-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            overflow-wrap: break-word;
        }
        .section-list {
            list-style: none;
            padding: 0;
        }
        .section-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
        }
        .section-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
        }
        .content-block {
            margin-bottom: 0.5rem;
            padding: 1.25rem 1.5rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer {
            background: #0a0a0a;
            padding: 70px 0 50px;
            border-top: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 20%, rgba(0,229,255,0.025) 0%, transparent 60%);
            pointer-events: none;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            justify-content: space-between;
        }
        .footer-left {
            max-width: 280px;
        }
        .footer-left p {
            font-size: 14.5px;
            color: #a1a1aa;
            line-height: 1.7;
        }
        .footer-social {
            display: flex;
            gap: 14px;
            margin-top: 16px;
        }
        .footer-social a {
            color: #a1a1aa;
            transition: color 0.2s ease;
        }
        .footer-social a:hover {
            color: #00ffff;
        }
        .footer-nav {
            display: flex;
            gap: 70px;
            flex-wrap: wrap;
        }
        .footer-nav-title {
            font-size: 13px;
            color: #00E5FF;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .footer-nav-links {
            display: flex;
            flex-direction: column;
            gap: 11px;
            font-size: 15px;
        }
        .footer-nav-links a {
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-nav-links a:hover {
            color: #00ffff;
        }
        .footer-contact {
            max-width: 280px;
        }
        .footer-contact-title {
            font-size: 13px;
            color: #00E5FF;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .footer-contact-item {
            margin-bottom: 14px;
        }
        .footer-contact-label {
            color: #a1a1aa;
            font-size: 13px;
        }
        .footer-contact-value {
            color: #e5e7eb;
            font-size: 15px;
            text-decoration: none;
        }
        .footer-contact-value a {
            color: #e5e7eb;
            text-decoration: none;
        }
        .footer-bottom {
            width: 100%;
            margin-top: 60px;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .footer-copy {
            font-size: 13px;
            color: #888;
            margin-bottom: 0;
        }
        .footer-links {
            display: flex;
            gap: 28px;
            font-size: 14px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #a1a1aa;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: #00ffff;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .tabs-wrapper {
                flex-direction: column;
            }
            .tab-btn {
                padding: 12px 20px;
            }
            .content-card {
                padding: 2rem 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 6rem 1.5rem 2rem;
            }
            .tabs-section {
                padding: 0 1.5rem;
            }
            .content-section {
                padding: 0 1.5rem 4rem;
            }
            .content-card {
                padding: 1.5rem;
                border-radius: 16px;
            }
        }
    
        #mmBot-launcher {
            display: none !important;
        }
        .chat-widget-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            border: none;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(74, 222, 128, 0.15);
            transition: all 0.3s ease;
        }
        .chat-widget-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(0, 229, 255, 0.45), 0 0 50px rgba(74, 222, 128, 0.2);
        }
        .chat-widget-btn img.chat-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }
        .chat-widget-btn svg.chat-close {
            display: none;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-btn.active img.chat-icon {
            display: none;
        }
        .chat-widget-btn.active svg.chat-close {
            display: block;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-popup {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 380px;
            height: 520px;
            border-radius: 20px;
            overflow: hidden;
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .chat-widget-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .chat-widget-header {
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-widget-header-logo {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .chat-widget-header-logo svg {
            width: 20px;
            height: 20px;
            fill: #000;
        }
        .chat-widget-header-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }
        .chat-widget-header-text span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }
        .chat-widget-iframe {
            width: 100%;
            height: calc(100% - 69px);
            border: none;
            background: #0a0a0a;
        }
        .chat-widget-ring {
            position: fixed;
            bottom: 22px;
            right: 22px;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 2px solid rgba(0, 255, 255, 0.2);
            z-index: 9997;
            animation: chat-ring 3s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes chat-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.15); opacity: 0; }
        }
        @media (max-width: 480px) {
            .chat-widget-popup {
                width: calc(100% - 24px);
                height: calc(100vh - 140px);
                bottom: 88px;
                right: 12px;
            }
            .chat-widget-btn {
                bottom: 20px;
                right: 20px;
            }
            .chat-widget-ring {
                bottom: 14px;
                right: 14px;
            }
        }

/* Hide default MMBot launcher to prevent overlapping with custom widget */
#mmBot-launcher {
    display: none !important;
}
