body {
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #050505;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.grid-bg {
    background-image: linear-gradient(to right, #1f2937 1px, transparent 1px),
        linear-gradient(to bottom, #1f2937 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 red;
    top: 0;
    color: white;
    background: #050505;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 3s infinite linear alternate-reverse;
}

@keyframes noise-anim {
    0% {
        clip: rect(4px, 9999px, 8px, 0);
    }

    5% {
        clip: rect(66px, 9999px, 86px, 0);
    }

    10% {
        clip: rect(2px, 9999px, 5px, 0);
    }

    15% {
        clip: rect(98px, 9999px, 12px, 0);
    }

    100% {
        clip: rect(0, 9999px, 0, 0);
    }
}

.animate-typewriter {
    overflow: hidden;
    border-right: .15em solid #00ff41;
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #00ff41;
    }
}

.pulse-button {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

@keyframes bounce {

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

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

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.coin-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    perspective: 1200px;
}

.coin-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.coin-face,
.coin-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.coin-face {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #2a2a2a, #000);
    border: 6px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.8);
    backface-visibility: hidden;
}

.coin-face.front {
    transform: translateZ(10px);
}

.coin-face.back {
    transform: translateZ(-10px) rotateY(180deg);
}

.coin-layer {
    background: #00ff41;
    border: 1px solid #004d13;
}

.coin-layer.l1 {
    transform: translateZ(8px);
}

.coin-layer.l2 {
    transform: translateZ(6px);
}

.coin-layer.l3 {
    transform: translateZ(4px);
}

.coin-layer.l4 {
    transform: translateZ(2px);
}

.coin-layer.l5 {
    transform: translateZ(-2px);
}

.coin-layer.l6 {
    transform: translateZ(-4px);
}

.coin-layer.l7 {
    transform: translateZ(-6px);
}

.coin-layer.l8 {
    transform: translateZ(-8px);
}

.animate-spin-slow {
    animation: spin-3d 6s infinite linear;
}

@keyframes spin-3d {
    0% {
        transform: rotateY(0deg);
    }

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

#tokenChart {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}