/* Marantz Gyro-Touch Horizontal Tuning Wheel */

.tun-wheel-group {
    width: 140px;
    height: 90px;
}

.radio-wheel-horizontal {
    width: 120px;
    height: 40px;
    background: #111;
    border-radius: 4px;
    border: 2px solid #333;
    border-top-color: #000;
    border-bottom-color: #555;
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    cursor: ew-resize;
    box-shadow: 
        inset 0 10px 10px rgba(0,0,0,0.8),
        inset 0 -10px 10px rgba(0,0,0,0.8),
        0 2px 4px rgba(0,0,0,0.5);
}

.wheel-texture-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%; /* Wider than container so it can scroll */
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    transition: transform 0.05s linear;
}

.wheel-ribs {
    width: 100%;
    height: 100%;
    /* Create repeating vertical metallic ribs */
    background-image: repeating-linear-gradient(
        90deg,
        rgba(0,0,0,0.8) 0px,
        rgba(0,0,0,0.8) 2px,
        rgba(255,255,255,0.2) 3px,
        rgba(255,255,255,0.05) 5px,
        rgba(0,0,0,0.8) 6px
    );
}

/* Add a shadow overlay to give the cylinder effect (darker on edges) */
.radio-wheel-horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.9) 100%);
}
