/* Modern Tech-Focused CSS with Advanced Animations */

/* CSS Variables - Clean Emerald Green Minimal Palette */
:root {
    /* Primary Color Scheme - Classic & Calm */
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --dark-blue: #1a252f;
    --electric-blue: #5dade2;
    --midnight-black: #000000;
    --dark-slate: #2c3e50;
    --deep-space: #1a252f;
    --neural-blue: #3498db;
    --quantum-white: #ffffff;
    --cyber-white: #f8f9fa;
    --matrix-silver: #e9ecef;
    --steel-blue: #6c757d;
    --arctic-white: #f1f3f4;
    --electric-cyan: #85c1e9;
    --neon-blue: #5dade2;
    --cosmic-blue: #3498db;
    
    /* UI Colors - Minimal Palette */
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border-gray: #e5e7eb;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-accent: #10b981;
    
    /* Glass & Materials */
    --glass-bg: rgba(44, 62, 80, 0.12);
    --glass-border: rgba(52, 73, 94, 0.18);
    --glass-hover: rgba(52, 152, 219, 0.15);
    --dark-glass: rgba(0, 0, 0, 0.6);
    --neural-glass: rgba(44, 62, 80, 0.08);
    
    /* Shadows & Glows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.25);
    --glow-blue: 0 0 25px rgba(52, 152, 219, 0.4);
    --glow-light: 0 0 25px rgba(93, 173, 226, 0.3);
    --glow-white: 0 0 25px rgba(255, 255, 255, 0.3);
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Authentication Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.login-btn, .register-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.login-btn {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(52, 152, 219, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(93, 173, 226, 0.1));
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
    color: var(--secondary-blue);
}

.login-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.register-btn {
    color: white;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border: none;
    box-shadow: var(--shadow-soft);
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    box-shadow: var(--shadow-strong);
    transform: translateY(-2px);
}

/* Hero Authentication Section */
.auth-hero-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.auth-hero-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-hero-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.auth-btn.register {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    border: none;
}

.auth-btn.register:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong), var(--glow-blue);
}

.auth-btn.login {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.auth-btn.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.7s ease;
}

.auth-btn.login:hover::before {
    left: 100%;
}

.auth-btn.login:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4), 0 0 20px rgba(52, 152, 219, 0.2);
    border-color: transparent;
}

.auth-btn.login:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-auth {
        display: none; /* Hide in mobile menu, will be added to mobile nav */
    }
    
    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .auth-hero-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .auth-hero-section h3 {
        font-size: 1.5rem;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 60%, #dee2e6 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.6;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: var(--quantum-white);
    animation-duration: 8s;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: var(--accent-color);
    animation-duration: 10s;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.6; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.9; }
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 62, 80, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    animation: gridPulse 8s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 62, 80, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

/* Floating Orbs */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.2), rgba(93, 173, 226, 0.08));
    filter: blur(1px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.orb:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 22s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(30px) translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateX(-20px) translateY(-60px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(20px) translateY(-30px) scale(1.05);
        opacity: 0.6;
    }
}

/* Navigation - Modern Tech Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.header.scrolled {
    background: var(--dark-glass);
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow-strong);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-center {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-smooth);
}

.logo-pulse {
    position: absolute;
    inset: -5px;
    background: conic-gradient(from 0deg, var(--electric-blue), var(--quantum-white), var(--electric-cyan), var(--electric-blue));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
    opacity: 0.7;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--quantum-white);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--electric-blue), var(--quantum-white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}


.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--glass-hover);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    left: 100%;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--quantum-white), var(--electric-cyan));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-brand i {
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

/* Header Holographic Logo */
.header-holographic-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 0.5rem;
}

.header-logo-core {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.header-ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    animation: headerRingRotate 12s linear infinite;
}

.header-ring-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-color: rgba(52, 152, 219, 0.6);
    animation-duration: 15s;
}

.header-ring-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-color: rgba(0, 212, 255, 0.4);
    animation-duration: 10s;
    animation-direction: reverse;
}

.header-ring-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: rgba(133, 193, 233, 0.3);
    animation-duration: 8s;
}

@keyframes headerRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-logo-center {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3498db, #5dade2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 20px rgba(52, 152, 219, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: headerCenterPulse 3s ease-in-out infinite;
}

@keyframes headerCenterPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(52, 152, 219, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(52, 152, 219, 0.6); }
}

.header-logo-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -5px;
    left: -5px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: headerLogoPulse 4s ease-in-out infinite;
}

@keyframes headerLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.header-logo-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    animation: headerLogoScan 5s linear infinite;
}

@keyframes headerLogoScan {
    0% { transform: translateY(0px); opacity: 1; }
    100% { transform: translateY(50px); opacity: 0; }
}

/* Header Brand Identity */
.header-brand-identity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.header-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}

.header-name-part {
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.header-name-tech {
    color: #5dade2;
    text-shadow: 0 0 10px rgba(93, 173, 226, 0.3);
    margin-left: -0.05em;
}

.header-name-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(93, 173, 226, 0.1));
    border-radius: 4px;
    animation: headerNameGlow 6s ease-in-out infinite alternate;
}

@keyframes headerNameGlow {
    0% { opacity: 0.05; transform: scale(1); }
    100% { opacity: 0.15; transform: scale(1.02); }
}

.header-voice-of-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 0.7rem;
    color: rgba(75, 85, 99, 0.8);
    font-weight: 400;
    font-family: 'Inter', Arial, sans-serif;
}

.header-voice-text {
    color: rgba(107, 114, 128, 0.9);
    font-style: italic;
}

.header-voice-wave {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.4), transparent);
    border-radius: 1px;
    animation: headerVoiceWave 3s ease-in-out infinite;
}

@keyframes headerVoiceWave {
    0%, 100% { transform: scaleX(0.5); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 0.8; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--quantum-white);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2310b981" stroke-width="0.3" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 0.8; }
}

.hero-content h1 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4)); }
    100% { filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6)); }
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* Enhanced Typing Animation */
.typing-text {
    border-right: 3px solid var(--electric-blue);
    animation: blink 1.2s infinite;
    display: inline-block;
    min-height: 1.5em;
    background: linear-gradient(135deg, var(--electric-blue), var(--quantum-white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: blink 1.2s infinite, gradient-flow 4s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--electric-blue); }
    51%, 100% { border-color: transparent; }
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    min-width: 200px;
}

.cta-button small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 0.2rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    border-color: rgba(6, 182, 212, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--electric-cyan) 0%, var(--neon-blue) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.cta-button.tertiary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.cta-button.tertiary:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.stat {
    text-align: center;
    color: var(--quantum-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Enhanced Cloud Services Section */
#cloud {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

#cloud::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cloudGrid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%233b82f6" stroke-width="0.2" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23cloudGrid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

#cloud .container {
    position: relative;
    z-index: 1;
}

#cloud h2 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

#cloud p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Enhanced Media & Design Section */
#media {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(168, 85, 247, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

#media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="designGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%238b5cf6" stroke-width="0.2" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23designGrid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

#media .container {
    position: relative;
    z-index: 1;
}

#media h2 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

#media p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    font-weight: 500;
}

.chat-section, .tools-section, .about-section {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chat-section h2, .tools-section h2, .about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Chat Styles */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: #fff;
}

.message {
    display: flex;
    margin-bottom: 1rem;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.ai-message .message-avatar {
    background: linear-gradient(45deg, var(--primary-blue), var(--electric-blue));
    color: white;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: linear-gradient(45deg, var(--electric-cyan), var(--neon-blue));
    color: white;
    margin-right: 0;
    margin-left: 1rem;
}

.message-content {
    background: #f1f3f4;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    max-width: 70%;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(45deg, var(--primary-blue), var(--electric-blue));
    color: white;
}

.chat-input-container {
    display: flex;
    padding: 1rem;
    background: #f8f9fa;
    gap: 0.5rem;
}

#chatInput {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#chatInput:focus {
    border-color: var(--primary-blue);
}

#sendButton {
    background: linear-gradient(45deg, var(--primary-blue), var(--electric-blue));
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#sendButton:hover {
    transform: scale(1.1);
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-blue), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.tool-card h3 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
}

.tool-card p {
    font-family: 'Poppins', sans-serif;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.tool-button {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--electric-cyan), var(--neon-blue));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(10px);
}

/* Cloud Services Tool Cards */
#cloud .tool-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cloud .tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

#cloud .tool-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

#cloud .tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

#cloud .tool-button {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

#cloud .tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Media & Design Tool Cards */
#media .tool-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#media .tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

#media .tool-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

#media .tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

#media .tool-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

#media .tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.tool-button:hover {
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-blue);
}

.modal-body {
    padding: 2rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3000;
    color: white;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ====== NEW KAITECH RWANDA STYLES ====== */

/* Cloud Services Section */
.cloud-section {
    background: var(--white);
    padding: 5rem 0;
}

.cloud-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.cloud-hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.cloud-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--electric-blue);
}

.service-card.premium {
    position: relative;
    overflow: hidden;
}

.service-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue) 0%, var(--primary-blue) 50%, var(--electric-cyan) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-cyan) 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
}

.rwanda-advantage {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
}

.advantage-item i {
    font-size: 2rem;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

/* Media & Design Section */
.media-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f9ff 100%);
    padding: 5rem 0;
}

.media-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.media-hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.media-category {
    margin-bottom: 3rem;
}

.media-category h3 {
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.media-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-preview {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-cyan) 0%, var(--neon-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.media-btn {
    background: linear-gradient(135deg, var(--electric-cyan) 0%, var(--neon-blue) 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.media-btn:hover {
    transform: translateY(-2px);
}



/* News Intelligence Features Section */
.news-features-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--electric-blue);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-metric {
    margin-bottom: 1.5rem;
}

.feature-metric .metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-metric .metric-value.live {
    color: #ef4444;
    animation: pulse 2s infinite;
}

.feature-metric .metric-value.categories {
    color: var(--primary-blue);
}

.feature-metric .metric-value.social {
    color: var(--electric-blue);
}

.feature-metric .metric-value.responsive {
    color: var(--electric-cyan);
}

.feature-metric .metric-label {
    color: var(--light-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-button {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-button:hover {
    transform: translateY(-2px);
}

.analysis-results {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.results-header h3 {
    color: var(--primary-blue);
    margin: 0;
}

.close-results {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-results:hover {
    color: var(--primary-blue);
}

.results-content {
    color: var(--dark-text);
    line-height: 1.8;
}

/* Analysis Results Styling */
.sentiment-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.metric-card {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.metric-card.positive {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-left: 4px solid #10b981;
}

.metric-card.neutral {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-left: 4px solid #6b7280;
}

.metric-card.negative {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-left: 4px solid #ef4444;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--light-text);
}

.topic-list {
    list-style: none;
    margin-top: 1rem;
}

.topic-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.trend-items {
    margin: 1.5rem 0;
}

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: var(--light-gray);
}

.trend-item.hot {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
}

.trend-item.rising {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-left: 4px solid #3b82f6;
}

.trend-rank {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.trend-topic {
    flex: 1;
    margin: 0 1rem;
    font-weight: 600;
}

.trend-growth {
    color: var(--electric-blue);
    font-weight: 600;
}

.insight-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.insight-card {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.insight-card h5 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.confidence {
    display: inline-block;
    background: var(--electric-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #374151 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--electric-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--quantum-white);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    padding: 0.3rem 0;
    color: #d1d5db;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--electric-blue);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    color: #9ca3af;
}

/* New Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}


/* Modal Enhancements for New Services */
.service-modal, .portfolio-modal, .ai-tool-modal, .contact-modal {
    padding: 1rem;
}

.service-modal h3, .portfolio-modal h3, .ai-tool-modal h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--electric-blue);
    padding-bottom: 0.5rem;
}

.rwanda-advantage-mini ul, .portfolio-features ul, .ai-capabilities ul {
    list-style: none;
    margin: 1rem 0;
}

.rwanda-advantage-mini li, .portfolio-features li, .ai-capabilities li {
    padding: 0.5rem 0;
    border-left: 3px solid var(--electric-blue);
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-gray);
}

.creative-stats {
    background: linear-gradient(135deg, var(--light-gray), #e0f7fa);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.stat-row span {
    font-size: 0.9rem;
    color: var(--dark-text);
}

.ai-demo-area {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.sentiment-demo, .network-demo, .pipeline-demo {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.sentiment-bar {
    background: linear-gradient(90deg, var(--electric-blue), var(--primary-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
}

.contact-btn {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-info {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.contact-detail {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--dark-text);
}

.contact-detail i {
    color: var(--electric-blue);
    margin-right: 1rem;
    width: 20px;
}

.contact-form-placeholder {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #e8f5e8, #e6f3ff);
    border-radius: 10px;
    margin-top: 1rem;
}

.next-steps ol {
    text-align: left;
    max-width: 300px;
    margin: 1rem auto;
}

.next-steps li {
    padding: 0.3rem 0;
    color: var(--dark-text);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .cloud-services-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-row {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-detail {
        justify-content: center;
    }
}

/* KaiTech News Specific Styles */

/* Logo styling */
.logo {
    height: 45px;
    width: auto;
    max-width: 260px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Enhanced nav brand */
.nav-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Breaking News Bar */
.breaking-news-bar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.95) 50%, rgba(6, 182, 212, 0.95) 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.breaking-news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breaking-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Adjust header for breaking news bar */
.header {
    top: 40px;
}

/* Hero section updates */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding-top: 120px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #10b981, #059669);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* News Section */
.news-section {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-category.breaking {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    font-weight: 700;
    border-left: 3px solid #ef4444;
}

.news-category.technology {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    font-weight: 600;
    border-left: 3px solid #3b82f6;
}

.news-category.business {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    font-weight: 600;
    border-left: 3px solid #10b981;
}

.news-category.politics {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    color: #d97706;
    font-weight: 600;
    border-left: 3px solid #f59e0b;
}

.news-category.world {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #7c3aed;
    font-weight: 600;
    border-left: 3px solid #8b5cf6;
}

/* Advanced News Explorer */
.news-explorer-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 5rem 0;
}

.news-dashboard {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.news-control-panel {
    margin-bottom: 2rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news-search-input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-gray);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.news-search-input:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-btn, .ai-assistant-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-cyan) 100%);
    color: white;
}

.ai-assistant-btn {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    color: white;
}

.search-btn:hover, .ai-assistant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-tabs {
    border-bottom: 2px solid var(--border-gray);
}

.tab-container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0;
}

.news-tab {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-text);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.news-tab:hover {
    color: var(--primary-blue);
    background: var(--light-gray);
}

.news-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--electric-blue);
    background: var(--light-gray);
}

/* News Content Areas */
.news-content-container {
    margin-top: 2rem;
}

.news-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.news-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Topic Cards */
.news-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--primary-blue));
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--electric-blue);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.topic-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.topic-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.topic-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--electric-blue), var(--primary-blue));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Article Modal */
.article-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.article-modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-gray);
    background: var(--light-gray);
    border-radius: 20px 20px 0 0;
}

.close-article {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.close-article:hover {
    color: var(--primary-blue);
}

.article-actions {
    display: flex;
    gap: 1rem;
}

.article-actions .action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.article-actions .action-btn:hover {
    transform: translateY(-2px);
}

.article-body {
    padding: 2rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.article-footer {
    padding: 2rem;
    border-top: 2px solid var(--border-gray);
    background: var(--light-gray);
}

.related-articles h4 {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Trending Stories Enhanced */
.trending-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trending-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-gray);
}

.trending-filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.trending-filter-btn {
    padding: 0.7rem 1.2rem;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trending-filter-btn:hover {
    border-color: var(--primary-blue);
    background: var(--light-gray);
    transform: translateY(-2px);
}

.trending-filter-btn.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.trending-actions {
    display: flex;
    gap: 0.8rem;
}

.ai-summary-btn,
.news-alerts-btn,
.refresh-news-btn {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ai-summary-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.news-alerts-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.refresh-news-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.ai-summary-btn:hover,
.news-alerts-btn:hover,
.refresh-news-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Live News Stats */
.live-news-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.news-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.news-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* AI News Assistant Panel */
.ai-news-assistant {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 20px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    display: none;
}

.ai-news-assistant.active {
    display: block;
    animation: slideInFromTop 0.5s ease;
}

.ai-assistant-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-info {
    flex: 1;
}

.ai-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
}

.ai-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.close-ai-assistant {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-ai-assistant:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ai-chat-container {
    padding: 2rem;
}

.ai-suggestions {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.suggestion-chip {
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.ai-chat-messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.ai-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.user-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ai-message .message-avatar {
    background: var(--primary-blue);
}

.user-message .message-avatar {
    background: #6b7280;
}

.message-content {
    flex: 1;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 15px;
    line-height: 1.5;
}

.user-message .message-content {
    background: var(--primary-blue);
    color: white;
}

.ai-chat-input {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.ai-chat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.ai-chat-input input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.send-ai-btn {
    padding: 0.8rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-ai-btn:hover {
    background: var(--electric-blue);
    transform: scale(1.1);
}

/* Enhanced Trending Stories */
.trending-stories {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-gray);
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.trending-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-mode-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.view-mode-btn:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
}

.update-time {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trending-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.trending-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.trending-rank {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trending-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.trending-category {
    background: var(--primary-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trending-title {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.trending-excerpt {
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.trending-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trending-engagement {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trending-cta {
    display: flex;
    gap: 0.5rem;
}

.read-full-btn,
.ai-explain-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.read-full-btn {
    background: var(--primary-blue);
    color: white;
}

.ai-explain-btn {
    background: #8b5cf6;
    color: white;
}

.read-full-btn:hover,
.ai-explain-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.load-more-trending {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-gray);
}

.load-more-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    
    .news-search-input {
        min-width: auto;
    }
    
    .tab-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .news-tab {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .news-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .article-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .article-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-actions {
        justify-content: center;
    }
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-cyan) 100%);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: var(--electric-blue);
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.news-count-display {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid var(--border-gray);
}

.count-text {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    display: block;
}

.count-bar {
    width: 100%;
    height: 4px;
    background: var(--border-gray);
    border-radius: 2px;
    overflow: hidden;
}

.count-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-blue) 0%, var(--primary-blue) 100%);
    transition: width 0.5s ease;
    border-radius: 2px;
}

/* News Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-grid {
    transition: opacity 0.3s ease;
}

.news-card {
    transition: all 0.3s ease;
}

/* Responsive News Filtering */
@media (max-width: 768px) {
    .news-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.news-time {
    color: #6b7280;
    font-size: 0.9rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.news-source {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.9rem;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #f3f4f6;
    color: #3b82f6;
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
}

/* Analysis Section */
.analysis-section {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.analysis-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.analysis-metric {
    margin: 1.5rem 0;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-value.positive {
    color: #10b981;
}

.metric-value.neutral {
    color: #3b82f6;
}

.metric-value.trending {
    color: #f59e0b;
}

.metric-value.verified {
    color: #10b981;
}

.metric-label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-button {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.analysis-button:hover {
    transform: translateY(-2px);
}

/* Global Coverage Section */
.global-section {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.world-map {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.map-placeholder {
    color: #64748b;
}

.map-placeholder p {
    font-weight: 600;
    margin: 1rem 0;
}

.regional-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.region-card h4 {
    color: #334155;
    margin-bottom: 1rem;
}

.region-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.region-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

/* Update About section for KaiTech */
.about-section {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature i {
    color: #3b82f6;
}

/* Responsive updates */
@media (max-width: 768px) {
    .breaking-news-content {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .global-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Financial Markets Dashboard Styles */
.financial-markets-dashboard {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
}

.markets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.markets-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Market Overview */
.market-overview {
    margin-bottom: 2.5rem;
}

.market-indices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.index-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.index-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-cyan));
}

.index-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--primary-blue);
}

.index-card.positive .index-change {
    color: #22c55e;
}

.index-card.negative .index-change {
    color: #ef4444;
}

.index-name {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.index-value {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.index-change {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.section-header h4 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.crypto-trade-btn,
.stock-analyzer-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-trade-btn:hover,
.stock-analyzer-btn:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* Cryptocurrency Section */
.crypto-section {
    margin-bottom: 2.5rem;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.crypto-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.crypto-card.btc::before {
    background: linear-gradient(90deg, #f7931a, #ffb74d);
}

.crypto-card.eth::before {
    background: linear-gradient(90deg, #627eea, #8fa4f3);
}

.crypto-card.ada::before {
    background: linear-gradient(90deg, #0033ad, #3375e0);
}

.crypto-card.sol::before {
    background: linear-gradient(90deg, #9945ff, #b572ff);
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--primary-blue);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.crypto-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    color: var(--primary-blue);
}

.crypto-info {
    flex: 1;
}

.crypto-name {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.crypto-symbol {
    color: var(--light-text);
    font-size: 0.9rem;
}

.crypto-price {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.crypto-change {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.crypto-change.positive {
    color: #22c55e;
}

.crypto-change.negative {
    color: #ef4444;
}

.crypto-24h {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.crypto-24h .metric {
    color: var(--light-text);
    font-size: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

/* Stocks Section */
.stocks-section {
    margin-bottom: 2.5rem;
}

.stocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.stock-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--primary-blue);
}

.stock-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.company-logo {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
}

.stock-info {
    flex: 1;
}

.company-name {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.stock-symbol {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-price {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stock-change {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stock-change.positive {
    color: #22c55e;
}

.stock-change.negative {
    color: #ef4444;
}

.stock-details {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.stock-details .detail {
    color: var(--light-text);
    font-size: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

/* Trading Tools Section */
.trading-tools-section {
    margin-bottom: 1.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.tool-card h5 {
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.tool-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Financial Markets Responsive Design */
@media (max-width: 768px) {
    .financial-markets-dashboard {
        padding: 1.5rem;
    }
    
    .markets-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .market-indices {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .crypto-grid,
    .stocks-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .crypto-24h,
    .stock-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .crypto-trade-btn,
    .stock-analyzer-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Financial Markets Modal Styles */
.crypto-trader-modal,
.stock-analyzer-modal,
.risk-calculator-modal,
.price-alerts-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.crypto-trader-content,
.stock-analyzer-content,
.risk-calculator-content,
.price-alerts-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.crypto-trader-header,
.stock-analyzer-header,
.risk-calculator-header,
.price-alerts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-gray);
    background: var(--light-gray);
    border-radius: 20px 20px 0 0;
}

.close-crypto-trader,
.close-stock-analyzer,
.close-risk-calculator,
.close-price-alerts {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.close-crypto-trader:hover,
.close-stock-analyzer:hover,
.close-risk-calculator:hover,
.close-price-alerts:hover {
    color: var(--primary-blue);
}

/* Trading Interface Styles */
.trading-interface {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.trading-chart {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--border-gray);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.timeframe-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.chart-simulation {
    position: relative;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.chart-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: right;
}

.price-indicator {
    font-size: 1.2rem;
    font-weight: bold;
}

.change-indicator.positive {
    color: #22c55e;
}

.change-indicator.negative {
    color: #ef4444;
}

.trading-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-book {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--border-gray);
}

.order-book h5 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-text);
}

.order-book-data {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    color: var(--dark-text);
}

.asks .order-row {
    color: #ef4444;
}

.bids .order-row {
    color: #22c55e;
}

.current-price {
    text-align: center;
    font-weight: bold;
    color: var(--primary-blue);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    margin: 0.5rem 0;
}

.trade-form {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--border-gray);
}

.trade-tabs {
    display: flex;
    margin-bottom: 1rem;
}

.trade-tab {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.trade-tab:first-child {
    border-radius: 8px 0 0 0;
}

.trade-tab:last-child {
    border-radius: 0 8px 0 0;
}

.trade-tab.active {
    background: var(--primary-blue);
    color: white;
    border-bottom-color: var(--primary-blue);
}

.trade-inputs {
    margin-bottom: 1.5rem;
}

.trade-inputs label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.trade-inputs input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.trade-inputs input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.demo-trade-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.demo-trade-btn:hover {
    background: linear-gradient(135deg, var(--electric-cyan), var(--primary-blue));
    transform: translateY(-2px);
}

.demo-notice {
    text-align: center;
    font-size: 0.8rem;
    color: var(--light-text);
    font-style: italic;
}

/* Stock Analyzer Styles */
.analyzer-interface {
    padding: 2rem;
}

.search-section {
    margin-bottom: 2rem;
}

.stock-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stock-search input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
}

.stock-search button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.stock-search button:hover {
    background: var(--electric-blue);
}

.popular-stocks {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stock-quick-btn {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stock-quick-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.select-stock-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--light-text);
}

.select-stock-message i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stock-analysis-results {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--border-gray);
}

.stock-header-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-gray);
}

.stock-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.stock-change-large {
    font-size: 1.2rem;
    font-weight: 600;
}

.analysis-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-gray);
}

.metric-card h5 {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    color: var(--dark-text);
    font-size: 1.3rem;
    font-weight: bold;
}

.analysis-recommendation {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-gray);
}

.analysis-recommendation h5 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

/* Risk Calculator Styles */
.calculator-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.risk-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
}

.form-group input[type="range"] {
    padding: 0;
}

.range-value {
    float: right;
    color: var(--primary-blue);
    font-weight: 600;
}

.calculate-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, var(--electric-cyan), var(--primary-blue));
    transform: translateY(-2px);
}

.risk-results {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-gray);
}

.risk-score-card {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--border-gray);
}

.risk-level {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.risk-score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-text);
}

.risk-breakdown {
    margin-bottom: 2rem;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-gray);
}

.risk-recommendations {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-gray);
}

.risk-recommendations h6 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.risk-recommendations ul {
    margin-left: 1.5rem;
}

.risk-recommendations li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Price Alerts Styles */
.alerts-interface {
    padding: 2rem;
}

.create-alert {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--border-gray);
}

.alert-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.create-alert-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-alert-btn:hover {
    background: linear-gradient(135deg, var(--electric-cyan), var(--primary-blue));
    transform: translateY(-2px);
}

.active-alerts {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-gray);
}

.demo-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--border-gray);
}

.alert-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.alert-asset {
    font-weight: bold;
    color: var(--dark-text);
}

.alert-condition {
    color: var(--light-text);
    font-size: 0.9rem;
}

.alert-actions {
    display: flex;
    gap: 0.5rem;
}

.edit-alert-btn,
.delete-alert-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-alert-btn {
    background: var(--primary-blue);
    color: white;
}

.delete-alert-btn {
    background: #ef4444;
    color: white;
}

.edit-alert-btn:hover,
.delete-alert-btn:hover {
    transform: translateY(-1px);
}

/* Financial Modals Responsive Design */
@media (max-width: 768px) {
    .crypto-trader-content,
    .stock-analyzer-content,
    .risk-calculator-content,
    .price-alerts-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .trading-interface {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-interface {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .alert-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .demo-alert {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .popular-stocks {
        justify-content: center;
    }
    
    .analysis-metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Additional Modal Styles for Trending News */
.ai-summary-modal,
.news-alerts-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.ai-summary-content,
.news-alerts-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-summary-header,
.news-alerts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-gray);
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border-radius: 20px 20px 0 0;
}

.close-ai-summary,
.close-news-alerts {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-ai-summary:hover,
.close-news-alerts:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ai-summary-body,
.news-alerts-body {
    padding: 2rem;
}

.summary-loading {
    text-align: center;
    padding: 3rem 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-gray);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.summary-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.summary-section:last-of-type {
    border-bottom: none;
}

.summary-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trend-analysis {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border: 2px solid var(--border-gray);
}

.trend-topic {
    font-weight: 600;
    color: var(--dark-text);
}

.trend-momentum.positive {
    color: #22c55e;
    font-weight: 600;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-gray);
}

.share-summary-btn,
.save-summary-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-summary-btn {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    color: white;
}

.save-summary-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.share-summary-btn:hover,
.save-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* News Alerts Modal */
.alert-categories,
.alert-settings {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.alert-categories h4,
.alert-settings h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.category-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--border-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-checkbox:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.category-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.category-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.category-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.setting-group {
    margin-bottom: 1.5rem;
}

.setting-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.setting-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    background: var(--white);
    font-size: 1rem;
}

.alert-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.save-alerts-btn,
.test-alert-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-alerts-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.test-alert-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.save-alerts-btn:hover,
.test-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Typing indicator animation */
.typing-indicator {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Grid view for trending news */
.trending-list.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.trending-list.grid-view .trending-item {
    height: fit-content;
}

/* Responsive design for trending enhancements */
@media (max-width: 768px) {
    .trending-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .trending-filters {
        justify-content: center;
    }
    
    .trending-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .live-news-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .ai-summary-content,
    .news-alerts-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .ai-summary-header,
    .news-alerts-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .category-options {
        grid-template-columns: 1fr;
    }
    
    .alert-actions,
    .summary-actions {
        flex-direction: column;
    }
    
    .trending-item-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .trending-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trending-engagement {
        justify-content: center;
    }
    
    .trending-list.grid-view {
        grid-template-columns: 1fr;
    }
}

/* Live Broadcasting Hub Styles */
.live-broadcasting-hub {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Broadcast Control Center */
.broadcast-control-center {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.broadcast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.broadcast-header h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin: 0;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid #22c55e;
    color: #16a34a;
    font-weight: 600;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
}

.status-indicator.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.broadcast-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.start-broadcast-btn,
.studio-btn,
.social-hub-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.start-broadcast-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.studio-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.social-hub-btn {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: white;
}

.start-broadcast-btn:hover,
.studio-btn:hover,
.social-hub-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Integration Platforms */
.integration-platforms {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--border-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.platform-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.platform-header h4 {
    color: var(--dark-text);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.platform-description {
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
}

.platform-card {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.platform-card.youtube::before {
    background: linear-gradient(90deg, #ff0000, #ff4444);
}

.platform-card.twitter::before {
    background: linear-gradient(90deg, #1da1f2, #55acee);
}

.platform-card.facebook::before {
    background: linear-gradient(90deg, #1877f2, #42a5f5);
}

.platform-card.news-sites::before {
    background: linear-gradient(90deg, #374151, #6b7280);
}

.platform-card.tv-broadcast::before {
    background: linear-gradient(90deg, #7c2d12, #ea580c);
}

/* ======================================
   FUTURISTIC TECH FOOTER STYLES
   ====================================== */

.tech-footer {
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 25%, #0f1419 75%, #000000 100%);
    color: #ffffff;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #10b981;
    box-shadow: 0 -10px 50px rgba(16, 185, 129, 0.1);
}

/* Cyber Background Effects */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridPulse 4s ease-in-out infinite;
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #10b981, transparent),
        radial-gradient(2px 2px at 40% 70%, #34d399, transparent),
        radial-gradient(1px 1px at 90% 40%, #6ee7b7, transparent),
        radial-gradient(1px 1px at 70% 84%, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    animation: particleMove 20s linear infinite;
    opacity: 0.3;
}

.hologram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1), transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(52, 211, 153, 0.1), transparent 50%);
    animation: hologramShift 6s ease-in-out infinite alternate;
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: neuralFlow 8s linear infinite;
}

.neural-1 {
    top: 20%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.neural-2 {
    top: 60%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

.neural-3 {
    top: 80%;
    left: 0;
    right: 0;
    animation-delay: 4s;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 { top: 20%; left: 20%; }
.node-2 { top: 60%; left: 60%; }
.node-3 { top: 80%; left: 40%; }

.tech-footer .container {
    position: relative;
    z-index: 10;
    padding: 2rem 2rem 1rem;
}

/* Keyframe Animations */
@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

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

@keyframes hologramShift {
    0% { opacity: 0.1; transform: translateX(-10px); }
    100% { opacity: 0.3; transform: translateX(10px); }
}

@keyframes neuralFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

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

/* Tech Header */
.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.tech-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Holographic Logo */
.holographic-logo {
    position: relative;
    width: 100px;
    height: 100px;
}

.logo-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-color: #10b981;
    animation-duration: 8s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-color: #34d399;
    animation-duration: 6s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: #6ee7b7;
    animation-duration: 4s;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.logo-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -10px;
    left: -10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: logoPulseAnim 3s ease-in-out infinite;
}

@keyframes logoPulseAnim {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 1; }
}

.logo-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: logoScan 4s linear infinite;
}

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

/* Brand Identity */
.brand-identity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.name-part {
    color: #10b981;
    text-shadow: 0 0 20px #10b981;
}

.name-tech {
    color: #34d399;
    text-shadow: 0 0 20px #34d399;
    margin-left: -0.1em;
}

.name-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #10b981, #34d399);
    opacity: 0.1;
    border-radius: 10px;
    filter: blur(20px);
    animation: nameGlow 4s ease-in-out infinite alternate;
}

@keyframes nameGlow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.05); }
}

.voice-of-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 1.2rem;
    color: #6ee7b7;
}

.quote-mark {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

.voice-text {
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #6ee7b7;
}

.voice-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6ee7b7, transparent);
    animation: voiceWave 2s ease-in-out infinite;
}

@keyframes voiceWave {
    0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* Tech Description */
.tech-description {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 400px;
}

.description-text {
    color: #a0aec0;
    font-size: 1.1rem;
    text-align: right;
    line-height: 1.6;
    border-left: 3px solid #10b981;
    padding-left: 1rem;
    background: rgba(16, 185, 129, 0.05);
    padding: 1rem;
    border-radius: 0 10px 10px 0;
}

.tech-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Tech Content Grid */
.tech-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 3rem;
}

.solutions-module {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.nav-module {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.contact-module {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.social-module {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    margin-top: 1rem;
}

/* Tech Modules */
.tech-module {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-module:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.icon-orbit {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -10px;
    left: -10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: iconOrbit 6s linear infinite;
}

@keyframes iconOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.module-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-text {
    position: relative;
    z-index: 2;
}

.title-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    animation: titleScan 3s ease-in-out infinite;
}

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

/* Solution Cards */
.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(10px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ffff, #00ff88);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #000;
    flex-shrink: 0;
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.card-desc {
    font-size: 0.9rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-circuit {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-circuit {
    opacity: 1;
}

/* Navigation Interface */
.nav-interface {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #a0aec0;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0 8px 8px 0;
}

.nav-link:hover {
    color: #ffffff;
    border-left-color: #00ffff;
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(10px);
}

.link-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1rem;
}

.link-text {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-beam {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.nav-link:hover .link-beam {
    width: 20px;
}

/* Contact Terminal */
.contact-terminal {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.terminal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terminal-item:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.05);
}

.terminal-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    position: relative;
    flex-shrink: 0;
}

.signal-waves,
.data-stream,
.web-grid {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -7px;
    left: -7px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: signalPulse 2s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 1; }
}

.terminal-data {
    flex: 1;
}

.data-label {
    font-size: 0.8rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.data-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.data-status {
    font-size: 0.8rem;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compact Social Network Section */
.compact-social-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.social-network-compact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #10b981;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10b981, #34d399, #6ee7b7, #10b981);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    animation: socialGlow 3s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes socialGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.social-link:hover .social-glow {
    opacity: 1;
}

/* Individual Social Platform Colors */
.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0a66c2, #1a73e8);
    border-color: #0a66c2;
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-link.github:hover {
    background: linear-gradient(135deg, #333, #24292e);
    border-color: #333;
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.4);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0b5bb5);
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* System Status Bar */
.system-status {
    margin-top: 3rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(15px);
}

.status-left {
    flex: 1;
}

.copyright-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.data-stream-indicator {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: dataStream 2s ease-in-out infinite;
}

@keyframes dataStream {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 15px #00ff88; }
}

.copyright-text {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.status-right {
    display: flex;
    gap: 2rem;
}

.system-badges {
    display: flex;
    gap: 1.5rem;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.05);
    transform: translateY(-2px);
}

.badge-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
}

.security-badge .badge-icon {
    background: linear-gradient(135deg, #00ff88, #00ffff);
}

.uptime-badge .badge-icon {
    background: linear-gradient(135deg, #ffff00, #00ffff);
}

.badge-data {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-label {
    font-size: 0.8rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge-value {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.security-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: securityScan 3s linear infinite;
}

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

.uptime-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 10px;
    right: 10px;
    background: #ffff00;
    border-radius: 50%;
    animation: uptimePulse 2s ease-in-out infinite;
}

@keyframes uptimePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 15px #ffff00; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tech-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .tech-description {
        align-items: center;
        max-width: none;
    }
    
    .description-text {
        text-align: center;
        border-left: none;
        border-top: 3px solid #00ffff;
        border-radius: 10px;
    }
}

@media (max-width: 968px) {
    .social-network-compact {
        gap: 1.2rem;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .tech-footer .container {
        padding: 3rem 1rem 2rem;
    }
    
    .holographic-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .tech-stats {
        gap: 1rem;
    }
    
    .social-network {
        gap: 1.5rem;
    }
    
    .social-node {
        width: 50px;
        height: 50px;
    }
    
    .system-badges {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

/* Footer Main Layout */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 350px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.brand-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
    line-height: 1;
}

.tagline {
    font-size: 0.9rem;
    color: #06b6d4;
    font-weight: 600;
    font-style: italic;
}

.brand-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.4);
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.4rem 0;
    border-left: 3px solid transparent;
    padding-left: 0.8rem;
}

.footer-links a:hover {
    color: #ffffff;
    border-left-color: #3b82f6;
    padding-left: 1.2rem;
    transform: translateX(4px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: #cbd5e1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-item i {
    width: 18px;
    text-align: center;
    color: #3b82f6;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .clean-footer .container {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-header {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Main Footer Container */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Top Section */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.footer-brand-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Content Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Company Logo and Branding */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #06b6d4, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 40px rgba(99, 102, 241, 0.4),
        0 0 80px rgba(6, 182, 212, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: logoPulse 3s ease-in-out infinite;
}

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

.company-info {
    text-align: center;
}

.company-name {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.company-tagline {
    font-size: 1.2rem;
    color: #06b6d4;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.company-description {
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Section */
.social-media-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    position: relative;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.linkedin {
    color: #0a66c2;
}

.social-link.linkedin:hover {
    background: rgba(10, 102, 194, 0.2);
    border-color: #0a66c2;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.3);
}

.social-link.twitter {
    color: #1da1f2;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1da1f2;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.social-link.github {
    color: #6b7280;
}

.social-link.github:hover {
    background: rgba(107, 114, 128, 0.2);
    border-color: #6b7280;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(107, 114, 128, 0.3);
    color: #ffffff;
}

.social-link.facebook {
    color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.social-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    top: -45px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.column-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.column-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    border-radius: 2px;
}

.column-content {
    flex: 1;
}

/* Service List Styles */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    margin: 0;
}

.service-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Navigation List Styles */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 12px;
}

.nav-link:hover::before {
    width: 8px;
}

.nav-link i {
    color: #6366f1;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Contact Column Styles */
.contact-column {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    position: relative;
}

.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.contact-link:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.contact-ripple {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 18px;
    animation: contactRipple 2s ease-in-out infinite;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.contact-type {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0.2rem 0;
}

.contact-note {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-bottom: 2rem;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2.5rem;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright-section {
    flex: 1;
    min-width: 300px;
}

.copyright-text p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    max-width: 500px;
}

.footer-meta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.last-updated-info i {
    color: #6366f1;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.trust-badge.ssl {
    border-left: 4px solid #22c55e;
}

.trust-badge.uptime {
    border-left: 4px solid #6366f1;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.trust-badge.ssl .badge-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.trust-badge.uptime .badge-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content-grid {
        gap: 3rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-column {
        grid-column: 1 / -1;
        margin-top: 2rem;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-meta-section {
        align-items: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .company-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-link {
        padding: 1.2rem;
    }
    
    .service-link {
        padding: 1rem;
    }
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 18px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.6;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 1rem;
    color: #06b6d4;
    font-weight: 600;
    font-style: italic;
    margin: 0.3rem 0 0 0;
    letter-spacing: 0.5px;
}

.brand-description {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 1.5rem 0 2rem 0;
    font-weight: 400;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.5);
}

/* Footer Sections */
.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.footer-heading i {
    color: #06b6d4;
    font-size: 1.1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.4rem 0;
    border-radius: 6px;
    position: relative;
    padding-left: 0;
}

.footer-list a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    border-radius: 1px;
}

.footer-list a:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 12px;
}

.footer-list a:hover::before {
    width: 8px;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
}

.copyright {
    flex: 1;
}

.copyright p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.last-updated {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.ssl-badge {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.uptime-badge {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.badge i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-meta {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer .container {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.platform-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: var(--primary-blue);
}

.platform-card.youtube .platform-icon {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.platform-card.twitter .platform-icon {
    background: linear-gradient(135deg, #1da1f2, #55acee);
}

.platform-card.facebook .platform-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.platform-card.news-sites .platform-icon {
    background: linear-gradient(135deg, #374151, #6b7280);
}

.platform-card.tv-broadcast .platform-icon {
    background: linear-gradient(135deg, #7c2d12, #ea580c);
}

.platform-info {
    flex: 1;
}

.platform-info h5 {
    color: var(--dark-text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-desc {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.platform-software {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--border-gray);
}

.platform-software strong {
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.5rem;
}

.platform-software ul {
    margin: 0;
    padding-left: 1rem;
    list-style: none;
}

.platform-software li {
    margin-bottom: 0.3rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.software-name {
    color: var(--primary-blue);
    font-weight: 600;
}

.platform-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-self: center;
}

.setup-btn,
.stream-btn,
.post-btn,
.publish-btn,
.broadcast-btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    min-width: 120px;
}

.setup-btn {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.stream-btn,
.post-btn,
.publish-btn,
.broadcast-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.setup-btn:hover,
.stream-btn:hover,
.post-btn:hover,
.publish-btn:hover,
.broadcast-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Live Stream Preview */
.live-stream-preview {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--border-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stream-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.stream-header h4 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin: 0;
}

.stream-stats {
    display: flex;
    gap: 2rem;
}

.stream-stats .stat {
    text-align: center;
}

.stream-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.stream-stats .stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.live-feed-container {
    background: linear-gradient(135deg, var(--light-gray), #f8fafc);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-gray);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.live-feed-container::before {
    content: '🔴 LIVE';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.streaming-tools {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-gray);
}

.streaming-tools h4 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tools-grid-live {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card-live {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-cyan));
}

.tool-card-live:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-blue);
}

.tool-icon-live {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card-live h5 {
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.tool-card-live p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Live Broadcasting Responsive Design */
@media (max-width: 768px) {
    .live-broadcasting-hub {
        gap: 1.5rem;
    }
    
    .broadcast-control-center,
    .integration-platforms,
    .live-stream-preview {
        padding: 1.5rem;
    }
    
    .broadcast-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .broadcast-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .start-broadcast-btn,
    .studio-btn,
    .social-hub-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .platform-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .platform-actions {
        flex-direction: row;
        justify-content: center;
        align-self: stretch;
    }
    
    .stream-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stream-stats {
        justify-content: center;
    }
    
    .tools-grid-live {
        grid-template-columns: 1fr;
    }
    
    .platform-features {
        justify-content: center;
    }
}

/* Broadcast Setup Modal Styles */
.broadcast-setup-modal,
.platform-setup-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.broadcast-setup-content,
.platform-setup-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.broadcast-setup-header,
.platform-setup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-gray);
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
    border-radius: 20px 20px 0 0;
}

.close-broadcast-setup,
.close-platform-setup {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-broadcast-setup:hover,
.close-platform-setup:hover {
    background: rgba(255, 255, 255, 0.2);
}

.broadcast-setup-body,
.platform-setup-body {
    padding: 2rem;
}

.stream-setup,
.stream-settings {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.stream-setup h4,
.stream-settings h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.platform-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.platform-selection .platform-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--border-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-selection .platform-checkbox:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.platform-option i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.test-stream-btn,
.start-streaming-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.test-stream-btn {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
}

.start-streaming-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.test-stream-btn:hover,
.start-streaming-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Platform indicators and live stream styles */
.platform-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.platform-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--border-gray);
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-indicator i {
    font-size: 1.5rem;
}

.platform-indicator.youtube i {
    color: #ff0000;
}

.platform-indicator.twitter i {
    color: #1da1f2;
}

.platform-indicator.facebook i {
    color: #1877f2;
}

.live-broadcast-active {
    text-align: center;
    padding: 2rem;
}

.live-indicator {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.live-indicator.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.broadcast-status h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.broadcast-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pause-stream-btn,
.stop-stream-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pause-stream-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.stop-stream-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.pause-stream-btn:hover,
.stop-stream-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Live stream placeholder styles */
.live-stream-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--light-text);
}

.stream-preview {
    background: linear-gradient(135deg, var(--light-gray), #f8fafc);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed var(--border-gray);
    transition: all 0.3s ease;
}

.stream-preview:hover {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), #f8fafc);
}

.preview-content h4 {
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

/* Setup steps styles */
.setup-steps {
    margin-top: 1rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setup-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 2px solid var(--border-gray);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.download-btn,
.open-btn,
.guide-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.open-btn,
.guide-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-cyan));
    color: white;
}

.download-btn:hover,
.open-btn:hover,
.guide-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive design for broadcast modals */
@media (max-width: 768px) {
    .broadcast-setup-content,
    .platform-setup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .broadcast-setup-header,
    .platform-setup-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .platform-selection {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .broadcast-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .pause-stream-btn,
    .stop-stream-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .setup-step {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* ====== ENHANCED SIGN-IN BUTTON DESIGNS ====== */

/* Premium Glassmorphism Sign-In Button */
.signin-premium {
    padding: 12px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(52, 152, 219, 0.3);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 15px rgba(52, 152, 219, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signin-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(52, 152, 219, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
}

.signin-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.signin-premium:hover::before {
    left: 100%;
}

.signin-premium:hover::after {
    width: 200px;
    height: 200px;
}

.signin-premium:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-blue);
    box-shadow: 
        0 8px 25px rgba(52, 152, 219, 0.25),
        0 0 20px rgba(52, 152, 219, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--secondary-blue);
}

.signin-premium:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

/* Animated Gradient Sign-In Button */
.signin-gradient {
    padding: 12px 28px;
    border-radius: 25px;
    background: linear-gradient(45deg, 
        var(--primary-blue), 
        var(--electric-blue), 
        var(--secondary-blue), 
        var(--primary-blue)
    );
    background-size: 300% 300%;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: gradientShift 3s ease infinite;
}

.signin-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.signin-gradient:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.signin-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    animation-duration: 1.5s;
}

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

/* Minimal Clean Sign-In Button */
.signin-minimal {
    padding: 10px 24px;
    border-radius: 8px;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.signin-minimal:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(52, 152, 219, 0.05);
    transform: translateY(-1px);
}

/* Icon animations for all buttons */
.signin-premium i,
.signin-gradient i,
.signin-minimal i {
    transition: transform 0.3s ease;
}

.signin-premium:hover i,
.signin-gradient:hover i,
.signin-minimal:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .signin-premium,
    .signin-gradient,
    .signin-minimal {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}

/* ====== LANGUAGE TOGGLE STYLES ====== */

/* Language Toggle Container */
.language-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.3rem;
    border: 2px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.language-toggle-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.language-toggle-container:hover::before {
    left: 100%;
}

.language-toggle-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
    transform: translateY(-1px);
}

/* Language Toggle Button */
.language-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.language-toggle-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.language-toggle-btn:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
}

/* Language Icon */
.language-toggle-btn .fa-globe {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.language-toggle-btn:hover .fa-globe {
    transform: rotate(180deg) scale(1.1);
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid var(--border-gray);
    border-bottom: none;
    border-right: none;
    border-radius: 3px 0 0 0;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}

/* Language Options */
.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.4s ease;
}

.language-option:hover::before {
    left: 100%;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(93, 173, 226, 0.1));
    color: var(--primary-blue);
    transform: translateX(5px);
}

.language-option.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    font-weight: 600;
}

.language-option.active::after {
    content: '✓';
    margin-left: auto;
    font-weight: bold;
}

/* Flag Icons */
.flag-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.language-option:hover .flag-icon {
    transform: scale(1.1);
}

/* Language Text */
.language-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.language-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.language-native {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ====== TRANSLATION BADGE STYLES ====== */

/* Translation Badge */
.translation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: help;
}

.translation-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.translation-badge:hover::before {
    left: 100%;
}

.translation-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.translation-badge .fa-language {
    font-size: 0.7rem;
    animation: pulse-translate 2s ease-in-out infinite;
}

@keyframes pulse-translate {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Different Badge Styles for Various Languages */
.translation-badge.french {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.translation-badge.spanish {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.translation-badge.german {
    background: linear-gradient(135deg, #374151, #1f2937);
    box-shadow: 0 2px 8px rgba(55, 65, 81, 0.3);
}

.translation-badge.chinese {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.translation-badge.arabic {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

/* Loading State for Translation */
.translation-loading {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    animation: pulse 1.5s ease-in-out infinite;
}

.translation-loading .fa-language {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Translation Tooltip */
.translation-badge::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.translation-badge:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ====== RESPONSIVE LANGUAGE TOGGLE ====== */

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-toggle-container {
        padding: 0.2rem;
        gap: 0.3rem;
    }
    
    .language-toggle-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .language-dropdown {
        min-width: 180px;
        max-width: 90vw;
        left: auto;
        right: 0;
        transform: none;
    }
    
    .language-dropdown.active {
        transform: none;
    }
    
    .language-dropdown::before {
        left: auto;
        right: 1rem;
        transform: rotate(45deg);
    }
    
    .language-option {
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }
    
    .language-name {
        font-size: 0.85rem;
    }
    
    .language-native {
        font-size: 0.75rem;
    }
    
    .translation-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.3rem;
    }
    
    .flag-icon {
        font-size: 1rem;
        width: 20px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .language-toggle-btn {
        font-size: 0.85rem;
        padding: 0.55rem 0.9rem;
    }
    
    .language-dropdown {
        min-width: 190px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1440px) {
    .language-toggle-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        gap: 0.5rem;
    }
    
    .language-dropdown {
        min-width: 220px;
    }
    
    .language-option {
        padding: 1rem 1.4rem;
        gap: 1rem;
    }
    
    .flag-icon {
        font-size: 1.4rem;
        width: 28px;
    }
}
