﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Space+Grotesk:wght@500;600&amp;display=swap');

:root {
    --navy: #0a1428;
    --deep-navy: #050d1f;
    --silver: #e5e7eb;
    --neon-green: #BBE319;

}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    font-family: 'Montserrat','Inter', system_ui, sans-serif;
}

.logo-font {
    font-family: 'Montserrat','Space Grotesk', sans-serif;
}

.hero-bg {
    background: radial-gradient(at center bottom, rgba(34, 255, 136, 0.15) 0%, transparent 70%), linear-gradient(180deg, #050d1f 0%, #0a1428 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.neon-text {
    text-shadow: 0 0 4px rgba(187, 227, 25, 0.45), 0 0 8px rgba(187, 227, 25, 0.25);
}

.nav-link {
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #BBE319;
        transition: all 0.3s ease;
    }

    .nav-link:hover:after {
        width: 100%;
    }

.card-hover {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .card-hover:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 25px 50px -12px rgb(34 255 136 / 0.25);
    }

.chart-bg {
    background: linear-gradient(45deg, rgba(34,255,136,0.1) 0%, transparent 50%);
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #BBE319;
    animation: floatParticle 25s linear infinite;
    opacity: 0.15;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0.5);
    }

    100% {
        transform: translateY(-100vh) scale(1.2);
    }
}

.candle {
    animation: candleFlicker 4s infinite alternate;
}

.mobile-link {
    transition: all 0.3s;
}

    .mobile-link:hover {
        color: #BBE319;
        transform: translateX(10px);
    }

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #BBE31930;
    border-radius: 10px;
}

    .custom-scroll::-webkit-scrollbar-thumb:hover {
        background: #BBE31950;
    }