/* Custom Base Styles for the Brutalist Vibe */
body {
    background-color: #faf7f0;
    color: #141414;
    overflow-x: hidden;
}

/* Sharp corners everywhere */
* {
    border-radius: 0 !important;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Custom Bullet Points */
.brutalist-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.brutalist-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #800000;
}

/* Utility to force crisp borders */
.border-sharp {
    border: 1px solid #141414;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
