/* Custom CSS Enhancements */
body {
    background-color: #090d13;
    background-image: radial-gradient(rgba(34, 197, 94, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

.scene-card {
    transition: all 0.2s ease-in-out;
}

.scene-card:hover {
    transform: translateY(-2px);
    border-color: #3b434e;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0d1117;
}
::-webkit-scrollbar-thumb {
    background: #21262d;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #30363d;
}
