/* ==========================================================================
   Design System & Global Variables
   ========================================================================== */
:root {
    /* Colors */
    --clr-bg: #0a0b10;
    --clr-bg-light: #12141d;
    --clr-bg-glass: rgba(18, 20, 29, 0.7);
    --clr-text: #e2e8f0;
    --clr-text-muted: #94a3b8;
    
    /* Primary Accent: Vibrant Indigo / Purple */
    --clr-primary: #6366f1;
    --clr-primary-hover: #4f46e5;
    
    /* Secondary Accent: Cyan / Teal */
    --clr-secondary: #06b6d4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    --gradient-text: linear-gradient(to right, #a5b4fc, #67e8f9);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-spacing: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--section-spacing) 0;
}

.bg-light {
    background-color: var(--clr-bg-light);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn.sm {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: var(--clr-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-text {
    color: #fff;
}

.logo-accent {
    color: var(--clr-secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(6,182,212,0.05) 50%, rgba(10,11,16,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--clr-secondary);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

/* Hero Visual / Mockup */
.glass-mockup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-body {
    position: relative;
    height: calc(100% - 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 100%);
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mockup-body::before {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 25%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 170, 0.45) 80%, rgba(0, 255, 170, 0.8));
    animation: alienScan 5s linear infinite; z-index: 1; pointer-events: none;
    box-shadow: 0 50px 50px -20px rgba(0,255,170,0.5);
}

.mockup-body::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(0,255,170,0.02), rgba(0,255,170,0.02) 1px, transparent 1px, transparent 3px),
                repeating-linear-gradient(90deg, rgba(0,255,170,0.02), rgba(0,255,170,0.02) 1px, transparent 1px, transparent 3px);
}

@keyframes alienScan { 0% { top: -25%; } 100% { top: 125%; } }

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0, 255, 170, 0.3);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite alternate;
}

.floating-card {
    position: absolute;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 99px; /* Pill shape */
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.02);
    font-weight: 600;
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    color: #f8fafc;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
    opacity: 1;
}

.floating-card.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.floating-card:hover { border-color: rgba(99, 102, 241, 0.5); box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.3); }

.c1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.c2 { top: 35%; right: 5%; animation: float 7s ease-in-out infinite reverse; }
.c3 { bottom: 30%; left: 8%; animation: float 5s ease-in-out infinite 1s; }
.c4 { bottom: 8%; right: 8%; animation: float 8s ease-in-out infinite 2s; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0.2; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(99,102,241,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Icon Colors */
.red-glow { border: 1px solid rgba(255, 95, 86, 0.2); box-shadow: 0 0 20px rgba(255, 95, 86, 0.1); }
.red-glow svg { color: #ff5f56; }
.blue-glow { border: 1px solid rgba(99, 102, 241, 0.2); box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); }
.blue-glow svg { color: #6366f1; }
.green-glow { border: 1px solid rgba(39, 201, 63, 0.2); box-shadow: 0 0 20px rgba(39, 201, 63, 0.1); }
.green-glow svg { color: #27c93f; }
.yellow-glow { border: 1px solid rgba(255, 189, 46, 0.2); box-shadow: 0 0 20px rgba(255, 189, 46, 0.1); }
.yellow-glow svg { color: #ffbd2e; }
.mint-glow { border: 1px solid rgba(6, 182, 212, 0.2); box-shadow: 0 0 20px rgba(6, 182, 212, 0.1); }
.mint-glow svg { color: #06b6d4; }
.purple-glow { border: 1px solid rgba(168, 85, 247, 0.2); box-shadow: 0 0 20px rgba(168, 85, 247, 0.1); }
.purple-glow svg { color: #a855f7; }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.value-item {
    display: flex;
    gap: 1rem;
}

.value-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
}

.value-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.feature-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.feature-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.s1 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.2);
    top: -50px;
    right: -50px;
}

.s2 {
    width: 200px;
    height: 200px;
    background: rgba(6, 182, 212, 0.2);
    bottom: -50px;
    left: -50px;
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: float 5s ease-in-out infinite;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.3);
}

.mt-4 { margin-top: 1.5rem; }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-bg-light);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: #fff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 2.5rem auto; }
    .hero-actions { justify-content: center; }
    .glass-mockup { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--clr-bg-light);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition-normal);
        border-left: 1px solid rgba(255,255,255,0.05);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero-title { font-size: 2.5rem; }
}

/* ======================================================== */
/* DYNAMIC TOPBAR BROADCASTER ANIMATIONS                    */
/* ======================================================== */
.global-topbar {
    width: 100%;
    background: linear-gradient(135deg, #0a0f1c 0%, #151a2a 50%, #0a0f1c 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    z-index: 9999;
    border-bottom: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 15px -3px rgba(99, 102, 241, 0.2);
}
.global-topbar::before {
    content: ''; position: absolute; top:0; left:-100%; width:150px; height:100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-15deg);
    animation: glassGlow 6s infinite linear;
}
@keyframes glassGlow { 0% { left: -100px; } 20%, 100% { left: 120%; } }

.global-topbar a { color: inherit; text-decoration: none; display:inline-flex; align-items: center; justify-content: center; width:100%; }
.global-topbar a:hover { opacity: 0.8; }
.global-topbar i.bx { font-size: 1.4em; margin-right: 8px; vertical-align: middle; filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)); }

/* 1. Smooth Marquee */
.topbar-marquee .t-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding-left: 100vw;
    animation: marquee var(--anim-duration, 15s) linear infinite;
}
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }

/* 2. Rainbow Color Dance */
.topbar-rainbow_dance .t-content {
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #fceb00, #00f260, #0575e6, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    animation: rainbowDance 6s ease infinite;
    display: inline-flex;
    align-items: center;
}
.topbar-rainbow_dance i.bx {
    color: #fceb00; /* Fallback */
    filter: drop-shadow(0 0 8px #ff416c);
    animation: rainbowBX 4s ease infinite alternate;
}
@keyframes rainbowBX { 0% { filter: drop-shadow(0 0 8px #ff416c); color: #ff4b2b; } 100% { filter: drop-shadow(0 0 8px #00f260); color: #fceb00; } }
@keyframes rainbowDance { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* 3. LED Matrix / Cyberpunk Blink */
.topbar-led_matrix {
    background: #020804;
    border-bottom: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0,255,0,0.2) inset;
}
.topbar-led_matrix .t-content {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    animation: ledBlink 1.5s step-end infinite;
    display: inline-flex;
    align-items: center;
}
.topbar-led_matrix i.bx { color: #00ff00; }
@keyframes ledBlink { 0%, 100% { opacity: 1; text-shadow: 0 0 10px #00ff00; } 50% { opacity: 0.7; text-shadow: none; } }

/* 4. Soft Pulse */
.topbar-pulse .t-content {
    display: inline-flex;
    align-items: center;
    animation: softPulse 2s infinite;
}
@keyframes softPulse {
    0% { transform: scale(1); opacity: 0.9; color: #fff;}
    50% { transform: scale(1.03); opacity: 1; color: #60a5fa;}
    100% { transform: scale(1); opacity: 0.9; color: #fff;}
}