body {
            background-color: #080808;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Custom Range Slider Styling */
        input[type=range] {
            -webkit-appearance: none;
            width: 100%;
            background: transparent;
            height: 4px;
            border-radius: 2px;
            background: #2a2a2a;
            position: relative;
        }
        
        /* The lower part of the track */
        input[type=range]::before {
            content: '';
            position: absolute;
            height: 4px;
            background: #d59d00;
            border-radius: 2px;
            width: var(--progress, 10%); /* Changed dynamically via JS */
            top: 0;
            left: 0;
            z-index: 1;
        }

        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            background: #d59d00;
            cursor: pointer;
            margin-top: -8px;
            position: relative;
            z-index: 2;
            border: 4px solid #121212;
            box-shadow: 0 0 0 2px #d59d00;
            transition: transform 0.1s;
        }
        
        input[type=range]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }

        input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 4px;
            cursor: pointer;
        }

        /* Hide scrollbar for use cases row */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Modality active state */
        .modality-btn.active {
            background-color: #d59d00;
            color: #000;
            border-color: #d59d00;
        }
        .modality-btn {
            background-color: transparent;
            color: #fff;
            border-color: #2a2a2a;
        }