html {
    background-color: #2d3b2d; /* Footer color for bottom overscroll */
    height: 100%;
}

body {
    background-color: transparent;
    color: #1c1c1c;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Subtle Paper Texture Overlay */
.paper-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

.text-balance {
    text-wrap: balance;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #d6825c;
    border-radius: 10px;
    border: 2px solid #fbf9f4;
}
