:root {
    --neon-green: #000000;
    --accent-color: #00ff40;
}

button,
a,
.kart-card,
.glass-btn {
    transition-property: color, background-color, border-color, transform, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.tail-container {
    font-family: 'Inter', system-ui, sans-serif;
}

i[class*="fa-"],
.fab,
.fa-brands,
.fas,
.far {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif !important;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.7)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.neon-text {
    text-shadow:
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
}

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9999px;
}

#gallery::-webkit-scrollbar {
    height: 8px;
}

#gallery::-webkit-scrollbar-track {
    background: #27272a;
    border-radius: 9999px;
}

#gallery::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 9999px;
}

#gallery::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

#lightbox {
    touch-action: manipulation;
}

/* FIX: mobile menu stabil */
#mobileMenu {
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.5);
}

#mobileMenu.hidden {
    pointer-events: none;
}

/* FIX: reduce touch delay globally for UI */
button,
a {
    touch-action: manipulation;
}