/* Global Styles */
body {
    font-family: "Space Grotesk", sans-serif;
}

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

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

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

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

/* Utilities */
.glow-hover:hover {
    box-shadow: 0 0 15px rgba(253, 185, 22, 0.4);
}

.glass-panel {
    background: rgba(39, 39, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.layout-container {
    width: 100%;
}

/* View Transitions */
@view-transition {
    navigation: auto;
}

/* Page Entry Animations */
@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-page-enter {
    animation: page-enter 0.6s ease-out forwards;
}

/* Range Slider (Solar Page) */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #fdb916;
    cursor: pointer;
    margin-top: -10px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #717173;
    border-radius: 2px;
}