/* BASE — Reset, page defaults and the paper-grain background overlay. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #000000;
    background: #fefefe;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
    repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.01) 2px,
    rgba(0,0,0,0.01) 4px
    ),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}
