* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Inter, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
        }
        .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);
        }
        .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);
        }
        .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;
        }
        @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;
            }
            .login-btn {
                padding: 0.4rem 0.8rem;
                font-size: 12px;
            }
        }

        .hero {
            min-height: calc(100vh - 60px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: url('Images/grid_3.png') no-repeat center center;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 40%, rgba(0,229,255,0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .hero-title {
            text-align: center;
            font-size: clamp(28px, 4vw, 48px);
            line-height: 0.95;
            letter-spacing: -0.05em;
            font-weight: 500;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #00e5ff, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #a1a1aa;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 3rem;
        }
        .form-container {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
            backdrop-filter: blur(12px);
        }
        .form-container label {
            display: block;
            font-size: 13px;
            color: #a1a1aa;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-container input,
        .form-container textarea,
        .form-container select {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 15px 18px;
            color: white;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        .form-container input:focus,
        .form-container textarea:focus,
        .form-container select:focus {
            border-color: #00E5FF !important;
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15) !important;
        }
        .form-container textarea {
            resize: vertical;
        }
        .form-container select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a1a1aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            padding-right: 48px;
        }
        .form-container select option {
            background: #1a1a1a;
            color: white;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group {
            margin-bottom: 22px;
        }
        .captcha-row {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 22px;
        }
        .captcha-row input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #00E5FF;
        }
        .captcha-row label {
            margin-bottom: 0;
            cursor: pointer;
        }
        .submit-wrap {
            text-align: center;
            margin-top: 12px;
        }
        .submit-btn {
            height: 58px;
            padding: 0 52px;
            background: #000;
            color: white;
            border: 1px solid white;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: inherit;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            border-color: #00ffff !important;
            color: #00ffff !important;
            box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
        }
        .submit-btn:active {
            transform: translateY(-1px);
            background: rgba(0,229,255,0.15);
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.9s cubic-bezier(0.23,1,0.32,1) forwards;
        }
        .fade-up-delay {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.9s cubic-bezier(0.23,1,0.32,1) 0.15s forwards;
        }

        @media (max-width: 480px) {
            .form-container {
                padding: 32px 24px;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .hero {
                padding: 2rem 1.5rem;
            }
        }
    
        #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;
            }
        }
    

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
            background: rgba(255, 255, 255, 0.05) !important;
            border-color: rgba(255, 255, 255, 0.2) !important;
            color: rgba(255, 255, 255, 0.4) !important;
            box-shadow: none !important;
            transform: none !important;
        }
        @keyframes fadeInAlert {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

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