/*
Theme Name: Zuno Spark
Theme URI: https://zunospark.com
Author: Zuno Spark
Description: High-fidelity dark mode theme with noise textures and app-like physics.
Version: 2.3
*/

/* 1. Dynamic Background with Noise */
body {
    background-color: #050505;
    color: #e5e5e5;
    position: relative;
    overscroll-behavior-y: none; 
}

/* Subtle noise texture */
body::before {
    content: "";
    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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* 2. Scrollbar Styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
/* Updated to new yellow #ffac33 */
::-webkit-scrollbar-thumb:hover { background: #ffac33; }

/* 3. Comment Styles */
/* Note: Most styling is now handled by Tailwind in functions.php and comments.php */

/* Hide the default "Leave a Reply" if it sneaks in via other hooks */
h3#reply-title {
    display: none !important;
}

.comment-notes {
    display: none !important;
}

/* Ensure images in comments don't overflow */
.comment-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}