/* Custom CSS untuk Efek Glitch */

html {
    scroll-behavior: smooth;
}

/* Efek AI View (Rusak/Noise) */
.ai-view {
    /* Filter ini membuat foto terlihat aneh/negatif/kontras tinggi seperti dilihat mesin */
    filter: contrast(200%) grayscale(100%) invert(100%);
    position: relative;
}

/* Menambahkan pattern garis-garis (Scanlines) */
.ai-view::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

/* Custom Scrollbar biar ganteng */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #39ff14; 
}