/**
 * VorAI Dashboard Chatbot Styles - Isolated from main chatbot
 */

/* Dashboard Chat Container */
.vorai-dashboard-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Dashboard Chat Button */
.vorai-dashboard-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 20px rgba(29, 161, 242, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vorai-dashboard-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(29, 161, 242, 0.6);
}

.vorai-dashboard-button.active {
    transform: scale(0.9);
}

.vorai-dashboard-button .chat-icon {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

/* Dashboard Chat Widget */
.vorai-dashboard-widget {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 140px);
    background: #1a1f2e;
    border-radius: 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vorai-dashboard-widget.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

/* Dashboard Header */
.vorai-dashboard-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, #2a3444 0%, #1a1f2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vorai-dashboard-header .header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.vorai-dashboard-header .dashboard-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 161, 242, 0.1);
}

.vorai-dashboard-header .dashboard-logo .logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.vorai-dashboard-header .header-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.vorai-dashboard-header .status-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8899a6;
}

.vorai-dashboard-header .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.vorai-dashboard-header .header-controls {
    display: flex;
    gap: 8px;
}

.vorai-dashboard-header .control-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    pointer-events: auto; /* ensure buttons are clickable */
    z-index: 20; /* sit above decorative header layers */
}

.vorai-dashboard-header .control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vorai-dashboard-header .control-btn svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2;
}

/* Dashboard Messages Area */
.vorai-dashboard-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #1a1f2e;
    scroll-behavior: smooth;
}

.vorai-dashboard-messages::-webkit-scrollbar {
    width: 6px;
}

.vorai-dashboard-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.vorai-dashboard-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.vorai-dashboard-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Welcome Message */
.welcome-dashboard-message {
    text-align: center;
    padding: 20px;
}

.welcome-dashboard-message .welcome-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(29, 161, 242, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-dashboard-message .welcome-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.welcome-dashboard-message h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.welcome-dashboard-message p {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #8899a6;
}

.welcome-dashboard-message .quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.welcome-dashboard-message .quick-btn {
    padding: 10px 12px;
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.2);
    border-radius: 8px;
    color: #1da1f2;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.welcome-dashboard-message .quick-btn:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
    transform: translateY(-2px);
}

/* Dashboard Messages */
.dashboard-message {
    margin-bottom: 16px;
    opacity: 0;
    animation: messageAppear 0.3s forwards;
}

@keyframes messageAppear {
    to {
        opacity: 1;
    }
}

.dashboard-message.appear {
    opacity: 1;
}

.dashboard-message .message-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 12px;
}

.dashboard-message .message-sender {
    font-weight: 600;
    color: #ffffff;
}

.dashboard-message .message-time {
    color: #8899a6;
}

.dashboard-message .message-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.dashboard-message .message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-message.user .message-avatar {
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-message.assistant .message-avatar {
    background: rgba(29, 161, 242, 0.2);
}

.dashboard-message .user-avatar,
.dashboard-message .ai-avatar {
    font-size: 16px;
}

.dashboard-message .message-bubble {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
}

.dashboard-message.user .message-bubble {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: #ffffff;
    margin-left: auto;
}

.dashboard-message.assistant .message-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.dashboard-message.assistant.typing .message-bubble {
    background: rgba(29, 161, 242, 0.1);
}

.dashboard-message .message-bubble p {
    margin: 0;
    font-size: 14px;
}

/* Message Actions (Speak Button) */
.message-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.speak-btn {
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #1da1f2;
}

.speak-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
}

.speak-btn:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
    transform: translateY(-1px);
}

.speak-btn:active {
    transform: translateY(0);
}

.speak-btn.loading {
    opacity: 0.6;
    cursor: wait;
}

.speak-btn.playing {
    background: rgba(29, 161, 242, 0.3);
    border-color: #1da1f2;
    animation: pulse-speak 1.5s infinite;
}

@keyframes pulse-speak {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(29, 161, 242, 0);
    }
}

.speak-text {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typing Indicator */
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1da1f2;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.typing-text {
    font-size: 12px;
    color: #8899a6;
}

/* Dashboard Input Section */
.vorai-dashboard-input {
    padding: 16px 20px;
    background: #1a1f2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 16px 16px;
}

/* Voice Recording Indicator */
.voice-recording {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: rgba(29, 161, 242, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
}

.recording-animation {
    display: flex;
    gap: 4px;
}

.recording-animation span {
    width: 4px;
    height: 20px;
    background: #1da1f2;
    border-radius: 2px;
    animation: recording 0.8s infinite;
}

.recording-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.recording-animation span:nth-child(3) {
    animation-delay: 0.4s;
}

.recording-animation span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes recording {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 30px;
    }
}

.recording-text {
    font-size: 14px;
    color: #1da1f2;
    font-weight: 500;
}

/* Input Container */
.vorai-dashboard-input .input-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vorai-dashboard-input .dashboard-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.vorai-dashboard-input .dashboard-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #1da1f2;
}

.vorai-dashboard-input .dashboard-input::placeholder {
    color: #8899a6;
}

.vorai-dashboard-input .input-controls {
    display: flex;
    gap: 6px;
}

.vorai-dashboard-input .input-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vorai-dashboard-input .input-btn:hover {
    background: rgba(29, 161, 242, 0.2);
}

.vorai-dashboard-input .input-btn.listening {
    background: #1da1f2;
    animation: pulse 2s infinite;
}

.vorai-dashboard-input .input-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2;
}

.vorai-dashboard-input .send-btn {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.vorai-dashboard-input .send-btn:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #0c7ac4 100%);
    transform: scale(1.05);
}

/* Dashboard Footer */
.dashboard-footer {
    margin-top: 8px;
    text-align: center;
    font-size: 11px;
    color: #8899a6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vorai-dashboard-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .vorai-dashboard-button {
        display: none !important;
    }
    
    .vorai-dashboard-widget {
        /* Keep same shape as desktop */
        width: calc(100vw - 40px);
        max-width: 400px;
        height: 600px;
        max-height: calc(100vh - 140px);
        bottom: 80px;
        right: 0;
        left: auto;
        border-radius: 16px; /* Maintain rounded corners */
        border: 4px solid #ffffff; /* Keep white border */
    }
    
    .vorai-dashboard-header {
        border-radius: 16px 16px 0 0; /* Keep rounded top corners */
    }
    
    .vorai-dashboard-input {
        border-radius: 0 0 16px 16px; /* Keep rounded bottom corners */
        padding-bottom: 16px;
    }
    
    .welcome-dashboard-message .quick-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .quick-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Extra Small Mobile - Adjust size but keep shape */
@media (max-width: 480px) {
    .vorai-dashboard-container {
        right: 10px;
        left: 10px;
    }
    
    .vorai-dashboard-widget {
        width: calc(100vw - 20px);
        max-width: 380px;
        height: 550px;
        max-height: calc(100vh - 100px);
    }
}

/* Theme - Dark (default - styles already applied above) */

/* Theme - Light */
.vorai-dashboard-container.theme-light .vorai-dashboard-widget {
    background: #ffffff;
}

.vorai-dashboard-container.theme-light .vorai-dashboard-header {
    background: linear-gradient(135deg, #f0f3f7 0%, #ffffff 100%);
}

.vorai-dashboard-container.theme-light .vorai-dashboard-messages {
    background: #ffffff;
}

.vorai-dashboard-container.theme-light .vorai-dashboard-input {
    background: #ffffff;
}

.vorai-dashboard-container.theme-light .dashboard-input {
    background: #f0f3f7;
    border-color: #e1e8ed;
    color: #1a1f2e;
}

.vorai-dashboard-container.theme-light .dashboard-message.assistant .message-bubble {
    background: #f0f3f7;
    color: #1a1f2e;
}

.vorai-dashboard-container.theme-light .dashboard-message .message-sender {
    color: #1a1f2e;
}

/* ================================================
   VorAI PREMIUM BRANDING STYLES
   ================================================ */

/* Premium Button with VorAI Logo */
.vorai-dashboard-button.vorai-premium-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: visible;
}

.vorai-dashboard-button.vorai-premium-btn:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.vorai-logo-btn {
    width: 45px;
    height: 45px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.chat-icon-overlay {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    stroke: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    padding: 3px;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Removed: .vorai-pulse and .button-glow - no animations */

/* Premium Widget */
.vorai-dashboard-widget.vorai-premium-widget {
    background: linear-gradient(135deg, #1a1d2e 0%, #16213e 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Header */
.vorai-dashboard-header.vorai-premium-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(240, 147, 251, 0.3), transparent 60%),
                radial-gradient(circle at bottom left, rgba(102, 126, 234, 0.3), transparent 60%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.vorai-premium-logo {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: premium-glow 3s ease-in-out infinite alternate;
}

.vorai-premium-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: badge-shimmer 3s ease-in-out infinite;
}

.pulse-dot {
    animation: premium-pulse 2s ease-in-out infinite;
}

/* Premium Welcome Message */
.vorai-premium-welcome {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.vorai-premium-avatar {
    width: 90px;
    height: 90px;
    position: relative;
    animation: avatar-float 4s ease-in-out infinite;
}

.avatar-glow-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #667eea,
        #764ba2,
        #f093fb,
        #667eea
    );
    animation: ring-rotate 4s linear infinite;
    opacity: 0.6;
}

.avatar-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.avatar-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.avatar-particles span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.avatar-particles span:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.avatar-particles span:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.vorai-welcome-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    animation: gradient-shift 3s ease-in-out infinite;
}

.subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.welcome-message {
    white-space: pre-line;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.feature-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Premium Quick Action Buttons */
.vorai-premium-actions .vorai-premium-quick-btn {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vorai-premium-actions .vorai-premium-quick-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Premium Input */
.vorai-premium-input {
    background: linear-gradient(180deg, #1a1d2e 0%, #16213e 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.vorai-premium-container {
    position: relative;
}

.input-wrapper {
    position: relative;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 4px;
    margin: 12px;
}

.vorai-premium-input-field {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.vorai-premium-input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vorai-premium-controls {
    display: flex;
    gap: 8px;
}

.vorai-premium-controls .vorai-premium-btn,
.vorai-premium-controls .vorai-premium-send {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.vorai-premium-controls .vorai-premium-btn:hover,
.vorai-premium-controls .vorai-premium-send:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: premium-glow 2s ease-in-out infinite alternate;
}

/* Premium Recording */
.vorai-premium-recording {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.vorai-premium-recording .recording-text {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Premium Footer */
.vorai-premium-footer {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.gradient-text-small {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.shimmer-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.status-dot-small {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

/* ================================================
   PREMIUM ANIMATIONS
   ================================================ */

@keyframes premium-button-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes premium-button-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes premium-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes premium-glow {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes badge-shimmer {
    0%, 100% { box-shadow: 0 0 10px rgba(245, 87, 108, 0.5); }
    50% { box-shadow: 0 0 20px rgba(245, 87, 108, 0.8); }
}

@keyframes avatar-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

/* Mobile Responsiveness for Premium */
@media (max-width: 768px) {
    .vorai-dashboard-button.vorai-premium-btn {
        width: 60px;
        height: 60px;
    }
    
    .vorai-logo-btn {
        width: 38px;
        height: 38px;
    }
    
    .vorai-premium-avatar {
        width: 70px;
        height: 70px;
    }
    
    .gradient-text {
        font-size: 20px;
    }
}
