body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    margin: 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee-slow {
    animation: marquee 60s linear infinite;
}

.skewed-section {
    transform: skewY(-2deg);
}

.skewed-content {
    transform: skewY(2deg);
}

.funky-border {
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    transition: all 0.2s ease;
    position: relative;
}

.funky-border:hover {
    box-shadow: 10px 10px 0px #000;
    transform: translate(-4px, -4px);
}

.funky-border:active {
    transform: translate(0, 0);
    box-shadow: 0px 0px 0px #000;
}

/* Lucide Icon fix for WP */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease-out forwards;
}