/* style.css */

/* Text Outline Effect (Hollow Text) */
.text-stroke {
    -webkit-text-stroke: 1px #D8CFBC; /* Using 'bone' color */
    color: transparent;
}

/* Film Grain Texture - Essential for the 'Raw' look */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* Custom Cursor (Optional but premium feel) */
body {
    cursor: crosshair;
}

/* Input Auto-fill fix to keep dark theme */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #1A1B16 inset !important;
    -webkit-text-fill-color: white !important;
}
