.aks-scroller-container {
    overflow: hidden;
    background: #0A192F;
    color: #00E5FF;
    padding: 20px 0;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}
.aks-scroller-track {
    display: flex;
    white-space: nowrap;
    width: 200%;
}
.aks-scroller-content span {
    padding: 0 40px;
}
.aks-scroll-left {
    animation: aksScrollLeft 20s linear infinite;
    margin-bottom: 10px;
}
.aks-scroll-right {
    animation: aksScrollRight 20s linear infinite;
}
@keyframes aksScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes aksScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Chat Widget */
#aks-chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 9999;
}
#aks-chat-header {
    background: #0A192F;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
}
#aks-chat-body {
    height: 250px;
    padding: 10px;
    overflow-y: auto;
    font-family: sans-serif;
    font-size: 14px;
}
.aks-msg { margin-bottom: 10px; padding: 8px; border-radius: 4px; }
.aks-bot { background: #f1f1f1; align-self: flex-start; }
.aks-user { background: #00E5FF; color: #0A192F; align-self: flex-end; text-align: right; }
#aks-chat-input-container {
    display: flex;
    border-top: 1px solid #eee;
}
#aks-chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom-left-radius: 8px;
}
#aks-chat-send {
    padding: 10px;
    background: #2D3E50;
    color: white;
    border: none;
    cursor: pointer;
    border-bottom-right-radius: 8px;
}
#aks-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00E5FF;
    color: #0A192F;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
}
