/* Radio Widget - Art Deco / Skeuomorphic */
.radio-skeuo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 220px;
    height: 140px;
    z-index: 50;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.8));
}

.radio-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4b2c20 0%, #2a1810 100%);
    /* Mahogany Wood */
    border-radius: 15px 15px 5px 5px;
    border: 3px solid #5d4a2a;
    /* Brass frame */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 5px solid #6d5a3a;
}

.radio-grill {
    width: 90%;
    height: 40px;
    background: repeating-linear-gradient(90deg, #1a1a1a, #1a1a1a 2px, #333 4px);
    border-radius: 5px;
    border: 1px solid #000;
    margin-bottom: 10px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.radio-dial {
    width: 80%;
    height: 30px;
    background: #e4d8b8;
    /* Aged paper */
    border: 2px solid #5d4a2a;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.dial-numbers {
    font-family: 'Times New Roman', serif;
    font-size: 0.6rem;
    color: #333;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
}

.dial-needle {
    position: absolute;
    left: 45%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f00;
    box-shadow: 0 0 2px #f00;
}

.radio-controls {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.radio-label {
    font-size: 0.5rem;
    color: #5d4a2a;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1);
}

.radio-switch {
    width: 20px;
    height: 20px;
    background: #222;
    border: 2px solid #5d4a2a;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 0 #000;
}

.radio-switch::after {
    content: " \;
 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 10px;
    background: #5d4a2a;
    border-radius: 2px;
}

.radio-switch.on {
    background: #0f0;
    box-shadow: 0 0 10px #0f0;
}

.radio-tuning-eye {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: #030;
    border-radius: 50%;
    border: 1px solid #5d4a2a;
}

.radio-tuning-eye::after {
    content: \\;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 8px;
    background: #0f0;
    opacity: 0.5;
}


/* Volume Knob Styling */
.radio-volume-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.radio-knob {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at center, #444, #111);
    border: 2px solid #5d4a2a;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.knob-indicator {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #ffb100;
}

.knob-label {
    font-size: 0.4rem;
    color: #5d4a2a;
    font-weight: bold;
}