/* 
 * Ztark Clients - Modern Visual System
 * Extracting styles from Layouts and Views 
 */

:root {
    --bg-glass: rgba(12, 18, 38, 0.85);
    --accent-red: #ff4757; /* Celsur Red accent */
    --accent-glow: rgba(255, 71, 87, 0.3);
}

/* Glassmorphism Effects */
.glass-effect {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Carbon Background for Hero Sections */
.carbon-bg {
    background-color: #080c18;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,0.1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,0.05) 0, transparent 50%);
}

/* Better Buttons */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:active {
    transform: scale(0.95);
}

/* AI Assistant UI Improvements */
.ai-bubble-assistant {
    background: var(--bg3);
    border-radius: 0 20px 20px 20px;
    animation: slideInLeft 0.3s ease-out;
}

.ai-bubble-user {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 20px 0 20px 20px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Typing Indicator Animation */
.typing-dot {
    background: var(--accent-red) !important;
}

/* Chips Suggestions */
.chip-suggestion {
    border-radius: 12px !important;
    text-transform: none;
    letter-spacing: normal;
}

/* Hero Badge with Pulse */
.pulse-red {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}
