body {
    font-family: 'Inter', sans-serif;
    background-color: #0A1229;
    color: white;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('https://mastergo.com/ai/api/search-image?query=futuristic20digital20background20with20neon20blue20circuit20patterns20and20glowing20energy20lines,20cyberpunk20style20grid20matrix,20high20tech20aesthetic,20dark20theme,20ultramodern20design&width=1920&height=1080&orientation=landscape&flag=df9440d0ca2463f1297afd85aa0bab88') center/cover no-repeat,
        radial-gradient(circle at 20% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0A1229 0%, #111c3f 100%);
    background-blend-mode: soft-light;
    opacity: 0.9;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0% {
        filter: brightness(1) contrast(1);
    }

    50% {
        filter: brightness(1.1) contrast(1.1);
    }

    100% {
        filter: brightness(1) contrast(1);
    }
}

.tech-grid {
    background:
        linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-30px, -30px);
    }
}

.tech-glow {
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

.particle-animation {
    background:
        url('https://mastergo.com/ai/api/search-image?query=abstract20digital20network20pattern20with20glowing20dots20and20neon20lines20connecting20on20dark20background,20cyberpunk20tech20concept,20minimalist20futuristic20style&width=1920&height=1080&orientation=landscape&flag=c55467146dd975b7160ce6af000b52e3');
    opacity: 0.15;
    animation: particleMove 15s linear infinite;
    filter: blur(1px);
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10px, -5px) scale(1.02);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

.tech-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    animation: glowPulse 8s infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.3;
    }
}

.particle-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        url('https://mastergo.com/ai/api/search-image?query=abstract20digital20network20pattern20with20glowing20dots20and20lines20connecting20on20dark20blue20background,20technology20concept,20minimalist20style&width=1920&height=1080&orientation=landscape&flag=d3567bbd16276c9ae58754f5b9cf4cf7') center/cover no-repeat;
    opacity: 0.1;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -10px);
    }

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

.card-hover {
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.1);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(56, 189, 248, 0.2),
            transparent);
    transition: 0.5s;
}

.card-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
    border-color: rgba(56, 189, 248, 0.2);
}

.card-hover:hover::before {
    left: 100%;
}

.card-hover:hover::after {
    opacity: 1;
}

.card-hover::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: 0.5s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-hover:hover::before {
    left: 100%;
}

.neon-border {
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-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;
}

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

.gold-text {
    background: linear-gradient(90deg, #D4AF37 0%, #F9D423 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* .section-title {
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37 0%, #F9D423 100%);
        } */

.chart-container {
    width: 100%;
    height: 300px;
}

.windmill {
    animation: spin 8s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.balance {
    animation: balance 3s ease-in-out infinite alternate;
}

@keyframes balance {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}