:root {
    --bg-color: #030408;
    /* Deep dark blue/black */
    --text-main: #FAFAFA;
    --text-muted: #888888;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.font-geist-mono {
    font-family: 'Geist Mono', monospace !important;
}

/* Abstract Fluid Animations */
@keyframes flow1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes flow2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-50px, 40px) scale(1.05);
    }

    66% {
        transform: translate(40px, -20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.fluid-shape-1 {
    animation: flow1 20s ease-in-out infinite;
}

.fluid-shape-2 {
    animation: flow2 25s ease-in-out infinite reverse;
}

/* Smooth Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Zoom */
.img-container {
    overflow: hidden;
    border-radius: 0.5rem;
}

.img-zoom {
    transition: transform 0.7s ease-out;
}

.group:hover .img-zoom {
    transform: scale(1.05);
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #2a2c3a;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f4258;
}

/* Subtle Glow & Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glow-subtle {
    box-shadow: 0 0 50px -10px rgba(16, 185, 129, 0.15);
    /* Emerald tint */
}

/* Tokenomics Donut Chart */
.donut-chart {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* 
       Distribution breakdown:
       30% LP (blue: #3A7BF5) = 0deg to 108deg
       20% Pre-sale (light blue: #8BB8F8) = 108deg to 180deg
       20% Staking (green: #90E132) = 180deg to 252deg
       15% Dev (orange: #F59E3F) = 252deg to 306deg
       10% Marketing (light orange: #FCDA9C) = 306deg to 342deg
       5% Team (pale: #FEE7C8) = 342deg to 360deg
    */
    background: conic-gradient(#3A7BF5 0deg 108deg,
            #8BB8F8 108deg 180deg,
            #90E132 180deg 252deg,
            #F59E3F 252deg 306deg,
            #FCDA9C 306deg 342deg,
            #FEE7C8 342deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-hole {
    width: 200px;
    height: 200px;
    background-color: #12141D;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}