body {
    background-color: #F8FAFC;
    color: #111827;
}

/* Custom details/summary styling for FAQ */
details > summary {
    list-style: none;
}

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

/* Image placeholders for demo */
.demo-img {
    background-color: #E5E7EB;
    position: relative;
    overflow: hidden;
}

.demo-img::after {
    content: "Gambar: " attr(data-label);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6B7280;
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.demo-img img {
    position: relative;
    z-index: 1;
    display: block;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}