        /* ATC Bot Widget Styles */
        #atc-bot-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9998;
            font-family: 'Inter', sans-serif;
        }
        .atc-bot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            outline: none;
        }
        .atc-bot-toggle:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
        }
        .atc-bot-toggle.active {
            transform: scale(0.9);
            background: #f8fafc;
            color: #6366f1;
        }
        .atc-bot-chat {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            overflow: hidden;
            transform-origin: bottom right;
            animation: atcBotFadeIn 0.3s ease-out;
        }
        @keyframes atcBotFadeIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        .atc-bot-header {
            padding: 20px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .atc-bot-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            position: relative;
        }
        .atc-bot-avatar::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            background: #22c55e;
            border: 2px solid #6366f1;
            border-radius: 50%;
        }
        .atc-bot-info h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
        }
        .atc-bot-info span {
            font-size: 0.75rem;
            opacity: 0.8;
        }
        .atc-bot-minimize {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            margin-left: auto;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        .atc-bot-minimize:hover {
            opacity: 1;
        }
        .atc-bot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            scroll-behavior: smooth;
        }
        /* Customize Scrollbar */
        .atc-bot-messages::-webkit-scrollbar {
            width: 4px;
        }
        .atc-bot-messages::-webkit-scrollbar-track {
            background: transparent;
        }
        .atc-bot-messages::-webkit-scrollbar-thumb {
            background: rgba(99, 102, 241, 0.2);
            border-radius: 10px;
        }
        .atc-msg {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 15px;
            font-size: 0.9rem;
            line-height: 1.4;
            position: relative;
            animation: atcMsgSlide 0.3s ease-out;
        }
        @keyframes atcMsgSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .atc-msg.bot {
            align-self: flex-start;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #1e293b;
            border-bottom-left-radius: 2px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .atc-msg.user {
            align-self: flex-end;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            color: white;
            border-bottom-right-radius: 2px;
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }
        /* HTML Elements inside messages */
        .atc-msg h3,
        .atc-msg h4 {
            margin: 8px 0 4px 0;
            font-size: 1rem;
            color: inherit;
        }
        .atc-msg p {
            margin: 4px 0;
        }
        .atc-msg ul,
        .atc-msg ol {
            margin: 4px 0;
            padding-left: 20px;
        }
        .atc-msg code {
            background: rgba(0, 0, 0, 0.05);
            padding: 2px 4px;
            border-radius: 4px;
            font-family: monospace;
        }
        .atc-msg table {
            width: 100%;
            border-collapse: collapse;
            margin: 8px 0;
            font-size: 0.8rem;
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        .atc-msg th,
        .atc-msg td {
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 6px 10px;
            text-align: left;
        }
        .atc-msg th {
            background: rgba(99, 102, 241, 0.15);
            color: #4f46e5;
            font-weight: 700;
        }
        .user code {
            background: rgba(255, 255, 255, 0.2);
        }
        .atc-bot-input-area {
            padding: 15px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            gap: 10px;
        }
        .atc-bot-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 10px 15px;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s;
        }
        .atc-bot-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }
        .atc-bot-send {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #6366f1;
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .atc-bot-send:hover {
            background: #4f46e5;
            transform: scale(1.05);
        }
        .atc-bot-typing {
            font-size: 0.8rem;
            color: #94a3b8;
            padding: 0 20px 10px;
            display: none;
        }
        @media (max-width: 480px) {
            .atc-bot-chat {
                width: calc(100vw - 40px);
                height: 450px;
                right: -10px;
            }
        }