/**
 * Ultra-Modern Homepage CSS v2.0
 * 2030-Level Aesthetics - MAXIMUM MODERN
 */

/* ============================================
   Floating Particles Background
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: particle-float 15s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: rgba(236, 72, 153, 0.2);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: rgba(59, 130, 246, 0.25);
    animation-duration: 18s;
}

@keyframes particle-float {

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

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   Glow Effects & Shine Animations
   ============================================ */
@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes border-glow {

    0%,
    100% {
        border-color: rgba(139, 92, 246, 0.3);
    }

    50% {
        border-color: rgba(236, 72, 153, 0.5);
    }
}

.glow-effect {
    animation: glow-pulse 3s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   Scrolling Price Ticker
   ============================================ */
.price-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.03));
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 14px 0;
    backdrop-filter: blur(10px);
}

.price-ticker::before,
.price-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.price-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-primary, #09090b), transparent);
}

.price-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-primary, #09090b), transparent);
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    gap: 48px;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.02);
}

.ticker-symbol {
    font-weight: 700;
    font-size: 13px;
    color: var(--color-text-primary, #fff);
}

.ticker-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--color-text-secondary, #a1a1aa);
}

.ticker-change {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.ticker-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

/* ============================================
   Ultra Hero Section
   ============================================ */
.ultra-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.ultra-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 50%);
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ultra-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.ultra-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 32px;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

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

    50% {
        transform: translateY(-5px);
    }
}

.ultra-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.ultra-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.ultra-title .gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

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

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

.ultra-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary, #a1a1aa);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ultra-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ultra {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ultra.primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-ultra.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.btn-ultra.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary, #fff);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ultra.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-ultra {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #8b5cf6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-ultra:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-card-ultra:hover::before {
    opacity: 1;
}

.stat-card-ultra .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
}

.stat-card-ultra .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-ultra .stat-label {
    font-size: 14px;
    color: var(--color-text-secondary, #a1a1aa);
}

/* ============================================
   Feature Cards Modern
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-ultra {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card-ultra:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
}

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

.feature-icon-ultra {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature-icon-ultra.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    color: #a78bfa;
}

.feature-icon-ultra.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    color: #60a5fa;
}

.feature-icon-ultra.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
    color: #34d399;
}

.feature-icon-ultra.orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.1));
    color: #fbbf24;
}

.feature-icon-ultra.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.1));
    color: #f472b6;
}

.feature-icon-ultra.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
    color: #22d3ee;
}

.feature-title-ultra {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-desc-ultra {
    font-size: 14px;
    color: var(--color-text-secondary, #a1a1aa);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section-ultra {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-content-ultra {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-ultra {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ultra-cta {
        flex-direction: column;
    }
}

/* ============================================
   Ultra Modern Enhancements
   ============================================ */

/* Neon Border Effect */
.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #f59e0b, #10b981, #8b5cf6);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: neon-rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.neon-border:hover::before {
    opacity: 1;
}

@keyframes neon-rotate {
    0% {
        background-position: 0% 50%;
    }

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

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

/* 3D Card Transform */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

/* Glassmorphism Card Enhanced */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 8px 50px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Text Glow Effect */
.text-glow {
    text-shadow:
        0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

.text-glow-green {
    text-shadow:
        0 0 10px rgba(16, 185, 129, 0.5),
        0 0 20px rgba(16, 185, 129, 0.3);
}

.text-glow-orange {
    text-shadow:
        0 0 10px rgba(245, 158, 11, 0.5),
        0 0 20px rgba(245, 158, 11, 0.3);
}

/* Animated Border Gradient */
.animated-border {
    position: relative;
    background: var(--color-bg-primary);
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b);
    background-size: 300% 300%;
    animation: border-gradient 5s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes border-gradient {

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

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

/* Hover Scale with Glow */
.hover-glow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(139, 92, 246, 0.25),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

/* Feature Card Ultra Enhanced */
.feature-card-ultra {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: left 0.7s ease;
}

.feature-card-ultra:hover::after {
    left: 100%;
}

.feature-card-ultra:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px -15px rgba(139, 92, 246, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1);
}

/* Pulse Animation for Live Elements */
.pulse-live {
    position: relative;
}

.pulse-live::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-out 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-out {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Stat Card with Counter Animation Ready */
.stat-card-ultra {
    position: relative;
    overflow: hidden;
}

.stat-card-ultra .stat-value {
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-ultra:hover .stat-value {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    z-index: 9999;
    transition: width 0.1s;
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-magnetic:hover {
    transform: scale(1.05);
}

.btn-magnetic:active {
    transform: scale(0.98);
}

/* Scroll Triggered Animations */
.feature-card-ultra,
.stat-card-ultra {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card-ultra.animate-in,
.stat-card-ultra.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.feature-card-ultra:nth-child(1) {
    transition-delay: 0s;
}

.feature-card-ultra:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card-ultra:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card-ultra:nth-child(4) {
    transition-delay: 0.3s;
}

.feature-card-ultra:nth-child(5) {
    transition-delay: 0.4s;
}

.feature-card-ultra:nth-child(6) {
    transition-delay: 0.5s;
}

.stat-card-ultra:nth-child(1) {
    transition-delay: 0s;
}

.stat-card-ultra:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-card-ultra:nth-child(3) {
    transition-delay: 0.2s;
}

.stat-card-ultra:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================
   Ultra Modern Card Variants
   ============================================ */

/* Aurora Glow Card */
.card-aurora {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 28px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-aurora::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.3) 0%,
            rgba(236, 72, 153, 0.2) 25%,
            rgba(6, 182, 212, 0.2) 50%,
            rgba(16, 185, 129, 0.3) 75%,
            rgba(139, 92, 246, 0.3) 100%);
    background-size: 400% 400%;
    animation: aurora-shift 15s ease infinite;
    opacity: 0.5;
    z-index: 0;
}

.card-aurora>* {
    position: relative;
    z-index: 1;
}

@keyframes aurora-shift {

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

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

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

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

.card-aurora:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(139, 92, 246, 0.3),
        0 0 80px rgba(139, 92, 246, 0.2);
}

/* Morphing Border Card */
.card-morph {
    position: relative;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 20px;
    padding: 32px;
    isolation: isolate;
}

.card-morph::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg,
            #8b5cf6,
            #ec4899,
            #f59e0b,
            #10b981,
            #3b82f6,
            #8b5cf6);
    z-index: -1;
    animation: morph-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-morph::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 10, 15, 0.95);
    border-radius: inherit;
    z-index: -1;
}

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

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

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

/* Premium Glass Card */
.card-premium-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card-premium-glass:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 0 60px rgba(139, 92, 246, 0.05);
}

/* Neon Outline Card */
.card-neon-outline {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.card-neon-outline:hover {
    border-color: #8b5cf6;
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Gradient Mesh Card */
.card-mesh {
    position: relative;
    background: #0a0a0f;
    border-radius: 28px;
    padding: 36px;
    overflow: hidden;
}

.card-mesh::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 40% 70%, rgba(6, 182, 212, 0.3) 0%, transparent 40%);
    animation: mesh-float 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes mesh-float {

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

    33% {
        transform: translate(10%, -10%) rotate(5deg);
    }

    66% {
        transform: translate(-5%, 5%) rotate(-3deg);
    }
}

.card-mesh>* {
    position: relative;
    z-index: 1;
}