/* ====================================
   ENHANCED CHAT INTERFACE - CLEAN WITH STUNNING BACKGROUND
   Beautiful animated background with clean, professional chat UI
   ==================================== */

/* Enhanced CSS Variables for Chat */
:root {
    /* Quantum Color Palette */
    --quantum-bg-primary: #0a0e27;
    --quantum-bg-secondary: #1a1f3a;
    --quantum-bg-tertiary: #2a2f4a;
    --quantum-gradient-1: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
    --quantum-gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --quantum-gradient-3: linear-gradient(135deg, #4facfe 0%, #43e97b 100%);
    --quantum-gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --quantum-gradient-5: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Neon Accents */
    --neon-cyan: #00f2fe;
    --neon-purple: #764ba2;
    --neon-orange: #ff6b6b;
    --neon-green: #43e97b;
    --neon-blue: #4facfe;
    
    /* Glass Morphism */
    --glass-bg-1: rgba(255, 255, 255, 0.03);
    --glass-bg-2: rgba(255, 255, 255, 0.05);
    --glass-bg-3: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-bright: rgba(255, 255, 255, 0.15);
    
    /* Subtle Glows */
    --glow-subtle: 0 0 20px rgba(0, 242, 254, 0.1);
    --glow-medium: 0 0 30px rgba(118, 75, 162, 0.2);
    --shadow-clean: 0 10px 25px rgba(0, 0, 0, 0.3);
    
    /* Blur Effects */
    --blur-intense: blur(20px);
    --blur-medium: blur(15px);
    --blur-subtle: blur(10px);
}

/* ====================================
   SPECTACULAR BACKGROUND SYSTEM ONLY
   ==================================== */

/* LANDING PAGE STYLE ANIMATED BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -15;
    pointer-events: none;
    background: 
        /* Animated floating particles like landing page */
        radial-gradient(circle at 15% 25%, rgba(0, 242, 254, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(118, 75, 162, 0.35) 0%, transparent 35%),
        radial-gradient(circle at 25% 75%, rgba(67, 233, 123, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 75% 85%, rgba(79, 172, 254, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 40%),
        /* Geometric patterns like landing page */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(0, 242, 254, 0.03) 52px,
            rgba(0, 242, 254, 0.03) 54px
        ),
        /* Base gradient */
        linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    animation: landingPageBackground 20s ease-in-out infinite;
}

/* LANDING PAGE STYLE FLOATING GEOMETRIC ELEMENTS */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -12;
    pointer-events: none;
    background: 
        /* Floating dots like landing page */
        radial-gradient(circle at 10% 10%, rgba(0, 242, 254, 0.8) 0%, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(118, 75, 162, 0.6) 0%, transparent 1.5px),
        radial-gradient(circle at 20% 90%, rgba(67, 233, 123, 0.7) 0%, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(79, 172, 254, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(0, 242, 254, 0.4) 0%, transparent 1.5px),
        radial-gradient(circle at 30% 60%, rgba(118, 75, 162, 0.3) 0%, transparent 1px),
        /* Geometric lines like landing page */
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 242, 254, 0.1) 45%,
            rgba(0, 242, 254, 0.2) 50%,
            rgba(0, 242, 254, 0.1) 55%,
            transparent 100%
        );
    animation: landingPageGeometry 25s linear infinite;
}

/* LANDING PAGE STYLE NAVBAR LOGO ENHANCEMENT */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(118, 75, 162, 0.1)) !important;
    border: 1px solid rgba(0, 242, 254, 0.2) !important;
    border-radius: 12px !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.2), transparent);
    transition: left 0.5s ease;
    animation: logoShimmer 3s ease-in-out infinite;
}

.navbar-brand:hover::before {
    left: 100%;
}

.navbar-brand img {
    width: 32px !important;
    height: 32px !important;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5)) !important;
    margin-right: 12px !important;
}

.navbar-brand-text {
    display: flex !important;
    flex-direction: column !important;
    z-index: 1 !important;
    position: relative !important;
}

.navbar-brand-name {
    font-weight: 700 !important;
    font-size: 18px !important;
    background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: 0.5px !important;
    animation: logoGlow 2s ease-in-out infinite alternate !important;
}

.navbar-brand-version {
    font-size: 10px !important;
    color: rgba(0, 242, 254, 0.8) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(118, 75, 162, 0.2)) !important;
    border-color: rgba(0, 242, 254, 0.4) !important;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* LANDING PAGE STYLE NAVIGATION PILLS */
.nav-pill {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(118, 75, 162, 0.1)) !important;
    border: 1px solid rgba(0, 242, 254, 0.2) !important;
    border-radius: 25px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 16px !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-pill:hover::before,
.nav-pill.active::before {
    opacity: 1;
}

.nav-pill:hover,
.nav-pill.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(118, 75, 162, 0.2)) !important;
    border-color: rgba(0, 242, 254, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-1px) !important;
}

.nav-pill.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.3), rgba(118, 75, 162, 0.3)) !important;
    border-color: rgba(0, 242, 254, 0.6) !important;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5) !important;
}

/* LANDING PAGE STYLE FLOATING DOTS */
.landing-style-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.dot-0 {
    width: 4px;
    height: 4px;
    background: rgba(0, 242, 254, 0.8);
    top: 20%;
    left: 10%;
    animation-name: floatDot1;
}

.dot-1 {
    width: 6px;
    height: 6px;
    background: rgba(118, 75, 162, 0.7);
    top: 60%;
    left: 80%;
    animation-name: floatDot2;
}

.dot-2 {
    width: 3px;
    height: 3px;
    background: rgba(67, 233, 123, 0.8);
    top: 80%;
    left: 20%;
    animation-name: floatDot3;
}

.dot-3 {
    width: 5px;
    height: 5px;
    background: rgba(79, 172, 254, 0.6);
    top: 30%;
    left: 70%;
    animation-name: floatDot4;
}

/* LANDING PAGE STYLE GEOMETRIC LINES */
.geometric-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -11;
    pointer-events: none;
}

.geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.3), transparent);
    opacity: 0.4;
}

.line-1 {
    width: 200px;
    height: 1px;
    top: 25%;
    left: 15%;
    animation: rotateLine1 20s linear infinite;
}

.line-2 {
    width: 150px;
    height: 1px;
    top: 70%;
    left: 60%;
    animation: rotateLine2 25s linear infinite reverse;
}

.line-3 {
    width: 100px;
    height: 1px;
    top: 45%;
    left: 80%;
    animation: rotateLine3 18s linear infinite;
}

/* OVERRIDE BODY BACKGROUND WITH QUANTUM THEME */
body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%) !important;
    background-attachment: fixed !important;
}

/* OVERRIDE DARK THEME BACKGROUNDS */
body.dark-mode,
body.dark-theme,
.dark-theme {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%) !important;
    background-attachment: fixed !important;
}

/* VISUAL TEST INDICATOR - REMOVE AFTER CONFIRMING ANIMATIONS WORK */
.modern-chat-container::before {
    content: '✨ QUANTUM ANIMATIONS LOADED ✨';
    position: fixed;
    top: 50px;
    right: 10px;
    background: rgba(0, 242, 254, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 10000;
    font-size: 12px;
    font-weight: bold;
    animation: testIndicatorPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes testIndicatorPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8; 
    }
    33% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 1; 
    }
    66% { 
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.9; 
    }
}

.chat-quantum-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    overflow: hidden;
    opacity: 1; /* Ensure it's visible */
}

/* Quantum Layer 1: Large Floating Orbs */
.quantum-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: quantumFloat1 25s ease-in-out infinite;
    filter: var(--blur-medium);
}

.quantum-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 30%;
    right: -200px;
    animation: quantumFloat2 30s ease-in-out infinite;
    filter: var(--blur-medium);
}

.quantum-orb-3 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: 20%;
    animation: quantumFloat3 20s ease-in-out infinite;
    filter: var(--blur-medium);
}

.quantum-orb-4 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 233, 123, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: 60%;
    animation: quantumFloat4 35s ease-in-out infinite;
    filter: var(--blur-subtle);
}

.quantum-orb-5 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: -100px;
    animation: quantumFloat5 28s ease-in-out infinite;
    filter: var(--blur-medium);
}

/* Quantum Layer 2: Flowing Lines */
.quantum-neural-net {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 242, 254, 0.1) 31%, rgba(0, 242, 254, 0.1) 32%, transparent 33%),
        linear-gradient(-45deg, transparent 30%, rgba(118, 75, 162, 0.08) 31%, rgba(118, 75, 162, 0.08) 32%, transparent 33%);
    background-size: 100px 100px, 150px 150px;
    animation: neuralFlow 40s linear infinite;
}

/* Quantum Layer 3: Floating Particles */
.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.6;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation: particleFloat1 15s linear infinite; }
.particle:nth-child(2) { top: 40%; left: 80%; animation: particleFloat2 18s linear infinite; }
.particle:nth-child(3) { top: 70%; left: 30%; animation: particleFloat3 22s linear infinite; }
.particle:nth-child(4) { top: 10%; left: 60%; animation: particleFloat4 16s linear infinite; }
.particle:nth-child(5) { top: 80%; left: 15%; animation: particleFloat5 20s linear infinite; }
.particle:nth-child(6) { top: 30%; left: 90%; animation: particleFloat6 14s linear infinite; }
.particle:nth-child(7) { top: 60%; left: 45%; animation: particleFloat7 25s linear infinite; }
.particle:nth-child(8) { top: 15%; left: 75%; animation: particleFloat8 19s linear infinite; }
.particle:nth-child(9) { top: 85%; left: 55%; animation: particleFloat9 17s linear infinite; }
.particle:nth-child(10) { top: 50%; left: 25%; animation: particleFloat10 21s linear infinite; }

/* Quantum Layer 4: Energy Waves */
.quantum-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 242, 254, 0.02), transparent, rgba(118, 75, 162, 0.02), transparent);
    border-radius: 50%;
    top: -50%;
    left: -50%;
}

.wave-1 { animation: waveRotate 60s linear infinite; }
.wave-2 { animation: waveRotate 80s linear infinite reverse; }
.wave-3 { animation: waveRotate 100s linear infinite; }

/* ====================================
   CLEAN CHAT INTERFACE
   ==================================== */

.modern-chat-container {
    position: relative;
    z-index: 1;
    background: var(--glass-bg-1);
    backdrop-filter: var(--blur-intense);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-clean);
    transition: all 0.3s ease;
}

.modern-chat-container:hover {
    border-color: var(--glass-border-bright);
    box-shadow: var(--glow-subtle), var(--shadow-clean);
}

/* ====================================
   CLEAN PROFESSIONAL SIDEBAR
   ==================================== */

.chat-sidebar {
    background: var(--glass-bg-2);
    backdrop-filter: var(--blur-medium);
    border-right: 1px solid var(--glass-border);
    position: relative;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.new-chat-btn {
    width: 100%;
    padding: 12px 18px;
    background: var(--quantum-gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-chat-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-subtle);
}

.new-chat-btn i {
    margin-right: 8px;
}

/* ====================================
   CLEAN NAVIGATION
   ==================================== */

.nav-item {
    padding: 12px 18px;
    margin: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item:hover {
    background: var(--glass-bg-2);
    border-color: var(--glass-border);
    transform: translateX(4px);
}

.nav-item.active {
    background: var(--glass-bg-3);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-subtle);
}

.nav-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* ====================================
   CLEAN CHAT HEADER
   ==================================== */

.chat-header {
    background: var(--glass-bg-2);
    backdrop-filter: var(--blur-medium);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title-main {
    font-size: 20px;
    font-weight: 600;
    background: var(--quantum-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.header-btn {
    background: var(--glass-bg-1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.header-btn:hover {
    background: var(--glass-bg-2);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

/* ====================================
   CLEAN CHAT MESSAGES AREA
   ==================================== */

.chat-messages-container {
    background: transparent;
    overflow-y: auto;
    padding: 20px;
    height: calc(100vh - 200px);
    max-height: calc(100vh - 200px);
}

.chat-messages {
    background: transparent;
    overflow-y: auto;
    padding: 20px;
    height: calc(100vh - 250px);
}

/* Clean Message Bubbles */
.message {
    margin-bottom: 16px;
    opacity: 0;
    animation: messageSlideIn 0.4s ease-out forwards;
}

.message.user .message-content {
    background: var(--quantum-gradient-1);
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
    max-width: 70%;
    padding: 12px 16px;
    color: white;
    font-weight: 500;
}

.message.assistant .message-content {
    background: var(--glass-bg-3);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 18px 18px 18px 4px;
    margin-right: auto;
    max-width: 80%;
    padding: 12px 16px;
    color: var(--text-primary);
}

/* ====================================
   CLEAN INPUT AREA
   ==================================== */

.chat-input-container {
    padding: 20px;
    background: var(--glass-bg-2);
    backdrop-filter: var(--blur-medium);
    border-top: 1px solid var(--glass-border);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--glass-bg-1);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4px;
    transition: all 0.3s ease;
}

.chat-input-wrapper:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-subtle);
}

#user-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
    resize: none;
    max-height: 120px;
    min-height: 44px;
}

#user-input::placeholder {
    color: var(--text-secondary);
}

.send-btn {
    background: var(--quantum-gradient-1);
    border: none;
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.send-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-subtle);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ====================================
   CLEAN TYPING INDICATOR
   ==================================== */

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--glass-bg-2);
    border-radius: 18px 18px 18px 4px;
    margin: 16px 0;
    max-width: 100px;
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    margin: 0 2px;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* ====================================
   SPECTACULAR BACKGROUND ANIMATIONS
   ==================================== */

/* 1-5. Quantum Orb Float Animations */
@keyframes quantumFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(100px, -80px) rotate(90deg) scale(1.1); }
    50% { transform: translate(200px, 120px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-80px, 200px) rotate(270deg) scale(1.05); }
}

@keyframes quantumFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-120px, -150px) rotate(120deg) scale(1.15); }
    66% { transform: translate(80px, -250px) rotate(240deg) scale(0.85); }
}

@keyframes quantumFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-150px, -120px) rotate(180deg) scale(1.2); }
}

@keyframes quantumFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    20% { transform: translate(80px, 60px) rotate(72deg) scale(1.1); }
    40% { transform: translate(-60px, 120px) rotate(144deg) scale(0.9); }
    60% { transform: translate(-120px, -40px) rotate(216deg) scale(1.05); }
    80% { transform: translate(40px, -100px) rotate(288deg) scale(0.95); }
}

@keyframes quantumFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-100px, 150px) rotate(90deg) scale(1.08); }
    50% { transform: translate(-200px, -100px) rotate(180deg) scale(0.92); }
    75% { transform: translate(50px, -180px) rotate(270deg) scale(1.12); }
}

/* 6. Neural Network Flow */
@keyframes neuralFlow {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(0) translateY(-20px); }
    75% { transform: translateX(-20px) translateY(-10px); }
    100% { transform: translateX(0) translateY(0); }
}

/* 7-16. Particle Float Animations */
@keyframes particleFloat1 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(50px, -100px) rotate(180deg); opacity: 0; }
}

@keyframes particleFloat2 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(-80px, -100px) rotate(-180deg); opacity: 0; }
}

@keyframes particleFloat3 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(120px, -100px) rotate(360deg); opacity: 0; }
}

@keyframes particleFloat4 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(-60px, -100px) rotate(-360deg); opacity: 0; }
}

@keyframes particleFloat5 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(30px, -100px) rotate(270deg); opacity: 0; }
}

@keyframes particleFloat6 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(-100px, -100px) rotate(-270deg); opacity: 0; }
}

@keyframes particleFloat7 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(70px, -100px) rotate(450deg); opacity: 0; }
}

@keyframes particleFloat8 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(-40px, -100px) rotate(-450deg); opacity: 0; }
}

@keyframes particleFloat9 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(90px, -100px) rotate(540deg); opacity: 0; }
}

@keyframes particleFloat10 {
    0% { transform: translate(0, 100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translate(-70px, -100px) rotate(-540deg); opacity: 0; }
}

/* 17-19. Wave Rotation */
@keyframes waveRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* 20. Message Slide In (Clean) */
@keyframes messageSlideIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 21. Typing Bounce (Clean) */
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* ====================================
   CLEAN SCROLLBAR
   ==================================== */

.chat-messages-container::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages-container::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
    background: var(--glass-bg-1);
    border-radius: 3px;
}

.chat-messages-container::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
    background: var(--quantum-gradient-1);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.chat-messages-container::-webkit-scrollbar-thumb:hover,
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ====================================
   RESPONSIVE DESIGN WITH ANIMATIONS
   ==================================== */

@media (max-width: 768px) {
    .modern-chat-container {
        margin: 10px;
        border-radius: 15px;
        animation: mobileContainerSlide 1s ease-out;
    }
    
    .chat-sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .chat-sidebar.open {
        transform: translateX(0);
        animation: sidebarSlideIn 0.4s ease-out;
    }
    
    .quantum-orb-1, .quantum-orb-2, .quantum-orb-3 {
        width: 200px;
        height: 200px;
        animation-duration: 15s;
    }
}

@keyframes mobileContainerSlide {
    0% { transform: translateY(100px) scale(0.9); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes sidebarSlideIn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* ====================================
   SPECIAL EFFECTS FOR ENHANCED UX
   ==================================== */

.message.enhanced-entry {
    animation: enhancedMessageEntry 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes enhancedMessageEntry {
    0% { 
        opacity: 0; 
        transform: translateY(50px) rotateX(90deg) scale(0.8); 
    }
    50% { 
        opacity: 0.7; 
        transform: translateY(10px) rotateX(20deg) scale(1.05); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg) scale(1); 
    }
}

/* Scroll animations */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--glass-bg-1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--quantum-gradient-1);
    border-radius: 10px;
    animation: scrollGlow 2s ease-in-out infinite alternate;
}

@keyframes scrollGlow {
    0% { box-shadow: 0 0 5px rgba(118, 75, 162, 0.3); }
    100% { box-shadow: 0 0 15px rgba(118, 75, 162, 0.6); }
}

/* Loading states */
.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--glass-bg-1) 25%, 
        var(--glass-bg-2) 50%, 
        var(--glass-bg-1) 75%);
    background-size: 200% 100%;
    animation: shimmerLoad 2s linear infinite;
}

@keyframes shimmerLoad {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ====================================
   SPECTACULAR WELCOME SECTION
   ==================================== */

.welcome-section {
    padding: 40px 30px;
    text-align: center;
    background: var(--glass-bg-2);
    backdrop-filter: var(--blur-medium);
    border-radius: 20px;
    margin: 20px;
    border: 1px solid var(--glass-border-bright);
    position: relative;
    overflow: hidden;
    animation: welcomeEntrance 2s ease-out;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--quantum-gradient-1);
    opacity: 0.1;
    animation: welcomeGlow 8s ease-in-out infinite alternate;
}

.welcome-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ai-avatar-container {
    position: relative;
    margin-bottom: 20px;
}

.ai-avatar {
    width: 80px;
    height: 80px;
    background: var(--quantum-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    animation: avatarFloat 4s ease-in-out infinite;
    box-shadow: var(--glow-purple);
}

.ai-avatar::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--quantum-gradient-2);
    border-radius: 50%;
    opacity: 0.3;
    animation: avatarPulse 3s ease-in-out infinite;
    z-index: -1;
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: avatarGlow 5s ease-in-out infinite alternate;
    z-index: -2;
}

.welcome-title {
    font-size: 32px;
    font-weight: 800;
    background: var(--quantum-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: titleSpectrum 6s linear infinite;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
    animation: subtitleShimmer 4s ease-in-out infinite;
}

/* ====================================
   QUANTUM CONVERSATION STARTERS
   ==================================== */

.conversation-starters-quantum {
    position: relative;
    z-index: 2;
}

.starters-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--quantum-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: starterTitleGlow 4s ease-in-out infinite alternate;
}

.starters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.starter-card {
    background: var(--glass-bg-2);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.starter-card:nth-child(1) { animation-delay: 0s; }
.starter-card:nth-child(2) { animation-delay: 0.2s; }
.starter-card:nth-child(3) { animation-delay: 0.4s; }
.starter-card:nth-child(4) { animation-delay: 0.6s; }
.starter-card:nth-child(5) { animation-delay: 0.8s; }
.starter-card:nth-child(6) { animation-delay: 1s; }

.starter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--quantum-gradient-4);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.starter-card:hover::before {
    left: 0;
    opacity: 0.15;
}

.starter-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan), var(--shadow-floating);
}

.starter-card:active {
    transform: translateY(-4px) scale(1.01);
    animation: cardClick 0.3s ease;
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    animation: iconBounce 3s ease-in-out infinite;
    display: inline-block;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    animation: cardTitleGlow 4s ease-in-out infinite alternate;
}

.card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    animation: cardTextFade 5s ease-in-out infinite alternate;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--quantum-gradient-5);
    border-radius: 18px;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
    animation: cardGlowPulse 6s ease-in-out infinite;
}

.starter-card:hover .card-glow {
    opacity: 0.3;
}

/* ====================================
   ENHANCED CHAT MESSAGES CONTAINER
   ==================================== */

.chat-messages-container {
    position: relative;
    background: var(--glass-bg-1);
    backdrop-filter: var(--blur-light);
    overflow-y: auto;
    padding: 0;
    height: calc(100vh - 200px);
    max-height: calc(100vh - 200px);
}

.chat-messages-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(67, 233, 123, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(79, 172, 254, 0.03) 0%, transparent 50%);
    animation: messagesContainerGlow 20s ease-in-out infinite;
    z-index: -1;
}

/* ====================================
   ADDITIONAL STUNNING ANIMATIONS
   ==================================== */

@keyframes welcomeEntrance {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.95) rotateX(10deg); 
    }
    50% { 
        opacity: 0.7; 
        transform: translateY(10px) scale(1.02) rotateX(2deg); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1) rotateX(0deg); 
    }
}

@keyframes welcomeGlow {
    0% { opacity: 0.1; transform: scale(1) rotate(0deg); }
    100% { opacity: 0.2; transform: scale(1.01) rotate(1deg); }
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes avatarGlow {
    0% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    100% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

@keyframes titleSpectrum {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes subtitleShimmer {
    0%, 100% { opacity: 0.8; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(2px); }
}

@keyframes starterTitleGlow {
    0% { text-shadow: 0 0 10px rgba(79, 172, 254, 0.3); }
    100% { text-shadow: 0 0 20px rgba(79, 172, 254, 0.6), 0 0 30px rgba(0, 242, 254, 0.3); }
}

/* ====================================
   CSS-ONLY ANIMATED PARTICLES - IMMEDIATELY VISIBLE
   ==================================== */

/* Floating CSS particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -12;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 242, 254, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(118, 75, 162, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(67, 233, 123, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 107, 0.8), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(79, 172, 254, 0.8), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(0, 242, 254, 0.6), transparent),
        radial-gradient(2px 2px at 240px 90px, rgba(118, 75, 162, 0.6), transparent),
        radial-gradient(1px 1px at 280px 20px, rgba(67, 233, 123, 0.6), transparent),
        radial-gradient(2px 2px at 320px 70px, rgba(255, 107, 107, 0.6), transparent),
        radial-gradient(1px 1px at 360px 40px, rgba(79, 172, 254, 0.6), transparent);
    background-repeat: repeat;
    background-size: 400px 100px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Additional floating orbs using pseudo-elements */
.modern-chat-container::before {
    content: '';
    position: fixed;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -11;
    animation: floatOrb1 15s ease-in-out infinite;
}

.modern-chat-container::after {
    content: '';
    position: fixed;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -11;
    animation: floatOrb2 18s ease-in-out infinite reverse;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(-30px) translateX(20px) scale(1.1); }
    66% { transform: translateY(20px) translateX(-15px) scale(0.9); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(40px) translateX(-25px) scale(1.2); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-5px) rotateZ(0.5deg); }
}

@keyframes cardClick {
    0% { transform: translateY(-8px) scale(1.03); }
    50% { transform: translateY(-4px) scale(1.01); }
    100% { transform: translateY(-8px) scale(1.03); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-3px) rotate(2deg) scale(1.05); }
}

@keyframes cardTitleGlow {
    0% { color: var(--text-primary); text-shadow: none; }
    100% { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0, 242, 254, 0.5); }
}

@keyframes cardTextFade {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes cardGlowPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.02); }
}

@keyframes messagesContainerGlow {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.9; transform: rotate(0.5deg); }
}

/* ====================================
   RESPONSIVE ENHANCEMENTS
   ==================================== */

@media (max-width: 768px) {
    .welcome-section {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-subtitle {
        font-size: 16px;
    }
    
    .starters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .starter-card {
        padding: 20px;
    }
    
    .ai-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .card-icon {
        font-size: 28px;
    }
    
    .starters-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .starter-card {
        padding: 16px;
    }
    
    .card-content h4 {
        font-size: 16px;
    }
    
    .card-content p {
        font-size: 13px;
    }
}

/* ====================================
   ADDITIONAL SPECTACULAR ANIMATIONS
   ==================================== */

@keyframes welcomeExit {
    0% { 
        opacity: 1; 
        transform: translateY(0) scale(1) rotateX(0deg); 
    }
    50% { 
        opacity: 0.5; 
        transform: translateY(-20px) scale(0.95) rotateX(-5deg); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.8) rotateX(-15deg); 
    }
}

@keyframes iconSpinBoost {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes cardParticleFloat {
    0% { 
        transform: translateY(0) scale(1) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-30px) scale(0) rotate(180deg); 
        opacity: 0; 
    }
}

@keyframes cardSelectionBurst {
    0% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: translate(var(--burst-end-x), var(--burst-end-y)) scale(0) rotate(720deg); 
        opacity: 0; 
    }
}

@keyframes cardSelectionGlow {
    0% { 
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
        border-color: var(--glass-border);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 242, 254, 0.8), 0 0 80px rgba(118, 75, 162, 0.6);
        border-color: var(--neon-cyan);
    }
    100% { 
        box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
        border-color: var(--neon-cyan);
    }
}

/* LANDING PAGE STYLE BACKGROUND ANIMATIONS */
@keyframes landingPageBackground {
    0%, 100% { 
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    25% { 
        filter: hue-rotate(30deg) brightness(1.1);
        transform: scale(1.02);
    }
    50% { 
        filter: hue-rotate(60deg) brightness(0.9);
        transform: scale(0.98);
    }
    75% { 
        filter: hue-rotate(90deg) brightness(1.05);
        transform: scale(1.01);
    }
}

@keyframes landingPageGeometry {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* LOGO ANIMATIONS MATCHING LANDING PAGE */
@keyframes logoShimmer {
    0%, 100% { 
        left: -100%;
        opacity: 0;
    }
    50% { 
        left: 100%;
        opacity: 1;
    }
}

@keyframes logoGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 242, 254, 0.3));
    }
    100% { 
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 242, 254, 0.6));
    }
}

/* LANDING PAGE STYLE DOT ANIMATIONS */
@keyframes floatDot1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.2); }
    50% { transform: translate(100px, 40px) scale(0.8); }
    75% { transform: translate(-30px, 80px) scale(1.1); }
}

@keyframes floatDot2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -50px) scale(1.3); }
    66% { transform: translate(60px, -40px) scale(0.9); }
}

@keyframes floatDot3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -60px) scale(1.4); }
}

@keyframes floatDot4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(30px, 20px) scale(1.1); }
    40% { transform: translate(-20px, 50px) scale(0.8); }
    60% { transform: translate(70px, -30px) scale(1.2); }
    80% { transform: translate(-50px, 10px) scale(0.9); }
}

/* LANDING PAGE STYLE LINE ANIMATIONS */
@keyframes rotateLine1 {
    0% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(90deg) translateX(20px); }
    50% { transform: rotate(180deg) translateX(-20px); }
    75% { transform: rotate(270deg) translateX(10px); }
    100% { transform: rotate(360deg) translateX(0); }
}

@keyframes rotateLine2 {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes rotateLine3 {
    0% { transform: rotate(0deg) translateY(0); }
    33% { transform: rotate(120deg) translateY(-15px); }
    66% { transform: rotate(240deg) translateY(15px); }
    100% { transform: rotate(360deg) translateY(0); }
}