.noise-bg {
    position: relative;
}
.noise-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    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");
    z-index: 1;
}

.bento-card {
    transition: all 0.4s ease;
}

.bento-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.bento-card:hover .glow-icon {
    color: #D4AF37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Custom calendar icon color for dark mode input[type="date"] */
::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.5; cursor: pointer; }
