/* RTP Control Styling - Egyptian Theme */
.rtp-control {
    background: var(--panel-bg);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.2);
    margin-top: 8px;
}

.rtp-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

#rtp-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(to right, #8b4513 0%, #d4a017 50%, #4caf50 100%);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

#rtp-slider:hover {
    opacity: 1;
}

#rtp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border: 2px solid #fff;
}

#rtp-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border: 2px solid #fff;
}

#target-rtp-value {
    color: var(--accent-sand);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(245, 222, 179, 0.5);
}

/* Responsive adjustments */
@media (min-width: 375px) {
    .rtp-label {
        font-size: 0.8rem;
    }

    .rtp-control {
        padding: 10px 15px;
    }
}

@media (min-width: 600px) {
    .rtp-control {
        padding: 12px 20px;
    }

    .rtp-label {
        font-size: 0.85rem;
    }

    #rtp-slider {
        height: 8px;
    }

    #rtp-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }

    #rtp-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .rtp-label {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .rtp-control {
        padding: 15px 25px;
    }

    .rtp-label {
        font-size: 1rem;
    }

    #rtp-slider {
        height: 10px;
    }

    #rtp-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }

    #rtp-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1440px) {
    .rtp-label {
        font-size: 1.1rem;
    }
}