/* Global Styles */
body {
    background-color: #050505;
    color: #ffffff;
}

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

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

::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}

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

/* Grid Pattern Animation (Optional Subtle Movement) */
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.bg-grid-pattern {
    /* mask-image can be added here for fading edges if supported */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

/* Utility for the tree lines */
.tree-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
}
