/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;
    --gradient: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Aurora/Northern Lights Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(14, 165, 233, 0.06) 50%, transparent 70%),
        linear-gradient(90deg, transparent 20%, rgba(168, 85, 247, 0.05) 50%, transparent 80%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: aurora 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes aurora {

    0%,
    100% {
        background-position: 0% 50%, 100% 50%, 50% 0%;
    }

    25% {
        background-position: 100% 50%, 0% 100%, 0% 50%;
    }

    50% {
        background-position: 50% 100%, 50% 0%, 100% 100%;
    }

    75% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
}

/* Matrix Rain Canvas (Hero Only) */
#matrixRain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* === NAVIGATION === */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

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

/* === HERO === */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #1e293b 0%, var(--bg-dark) 70%);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* === FLOATING GEOMETRIC SHAPES === */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

/* Diamond/Square shapes */
.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    top: 15%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
    animation-duration: 18s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    top: 35%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: -3s;
    animation-duration: 22s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    top: 60%;
    right: 5%;
    transform: rotate(45deg);
    animation-delay: -6s;
    animation-duration: 15s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #22d3d1 100%);
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: -2s;
    animation-duration: 20s;
    opacity: 0.4;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    bottom: 20%;
    left: 8%;
    transform: rotate(45deg);
    animation-delay: -8s;
    animation-duration: 25s;
}

/* Triangle shapes */
.shape-6 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(14, 165, 233, 0.5);
    top: 10%;
    right: 30%;
    animation-delay: -4s;
    animation-duration: 17s;
}

.shape-7 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(59, 130, 246, 0.4);
    top: 25%;
    right: 15%;
    animation-delay: -7s;
    animation-duration: 23s;
}

/* Large dark card shape */
.shape-8 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 20px;
    top: 30%;
    right: 20%;
    transform: rotate(15deg);
    animation-delay: -5s;
    animation-duration: 30s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Curved lines */
.shape-line {
    position: absolute;
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.shape-line-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: -5%;
    border-color: transparent transparent rgba(148, 163, 184, 0.15) transparent;
    animation: rotate-slow 40s infinite linear;
}

.shape-line-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    border-color: rgba(148, 163, 184, 0.1) transparent transparent transparent;
    animation: rotate-slow 30s infinite linear reverse;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    25% {
        transform: translateY(-20px) rotate(50deg);
    }

    50% {
        transform: translateY(-10px) rotate(40deg);
    }

    75% {
        transform: translateY(-30px) rotate(48deg);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 24px auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* === FEATURES === */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gradient Border Effect */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #6366f1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(99, 102, 241, 0.4),
            0 0 40px rgba(14, 165, 233, 0.2),
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow:
            0 0 35px rgba(99, 102, 241, 0.7),
            0 0 70px rgba(14, 165, 233, 0.4),
            0 25px 50px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === DEMO VIDEO === */
.demo {
    padding: 100px 0;
    background: var(--bg-card);
}

.demo-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.demo-video {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    border: none;
}

.demo-video::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 0%,
            transparent 30%,
            #6366f1 40%,
            #0ea5e9 50%,
            #6366f1 60%,
            transparent 70%,
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: snakeRotate 3s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.demo-video video {
    width: 100%;
    display: block;
}

/* === PRICING === */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e293b 100%);
}

.pricing-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

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

.pricing-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gradient Border Effect */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #6366f1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: neonPulse 1.5s ease-in-out infinite;
}

.pricing-card.popular::before {
    opacity: 1;
}

.pricing-card.popular {
    transform: scale(1.05);
    animation: neonPulseStrong 2s ease-in-out infinite;
}

@keyframes neonPulseStrong {

    0%,
    100% {
        box-shadow:
            0 0 25px rgba(99, 102, 241, 0.5),
            0 0 50px rgba(14, 165, 233, 0.25),
            0 15px 35px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow:
            0 0 45px rgba(99, 102, 241, 0.8),
            0 0 90px rgba(14, 165, 233, 0.5),
            0 20px 45px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* === REFERRAL === */
.referral {
    padding: 100px 0;
    background: var(--bg-dark);
}

.referral-content {
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.referral-content h2 {
    color: white;
    margin-bottom: 16px;
}

.referral-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.referral-steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
}

.step-num {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* === PAYMENT === */
.payment {
    padding: 100px 0;
    background: var(--bg-card);
}

.payment-card {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    border: none;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 0%,
            transparent 30%,
            #6366f1 40%,
            #0ea5e9 50%,
            #6366f1 60%,
            transparent 70%,
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: snakeRotate 3s linear infinite;
}

@keyframes snakeRotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.payment-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.payment-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.payment-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.payment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === CTA === */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-dark);
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
    background: #0a0f1a;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-content p {
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === FLOATING SUPPORT === */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-stats {
        gap: 30px;
    }

    .referral-content {
        padding: 40px 24px;
    }

    .payment-card {
        padding: 32px 24px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* === SCROLLING MARQUEE === */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 10px 0;
    position: relative;
    cursor: grab;
    user-select: none;
}

.marquee-container:active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

/* Marquee keeps scrolling on hover - removed pause */

.marquee-container.dragging .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('favicon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Marquee Variations */
.marquee-container.reverse .marquee-track {
    animation-direction: reverse;
}

/* Dark Marquee Variant */
.marquee-container.dark {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.marquee-container.dark .marquee-item {
    background: linear-gradient(90deg, #2dd4bf 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}