/* iPod widget specific styles */

.ipod-shell {
    width: 100%;
}

.ipod-player {
    position: relative;
    width: 226px;
    max-width: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a0033);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.7), 0 0 15px rgba(0, 255, 255, 0.5);
    border: 2px solid cyan;
    margin: 0 auto;
}

.ipod-screen {
    background: #000;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 12px;
    border: 2px solid magenta;
    box-shadow: inset 0 0 10px rgba(255, 0, 204, 0.3), 0 0 10px cyan;
}

.ipod-spotify-screen {
    text-align: center;
    padding: 8px 6px 6px;
}

.ipod-now-title {
    margin: 0;
    text-align: center;
}

.ipod-now-artist {
    margin: 7px 0 9px;
    text-align: center;
}

.ipod-status {
    color: #9be9ff;
    font-size: 9px;
    margin: 9px 0 0;
    text-align: center;
}

.ipod-time-row {
    margin-top: 9px;
}

.ipod-controls {
    text-align: center;
}

.ipod-wheel {
    background: radial-gradient(circle at 30% 30%, #2a2a2a, #111);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    margin: 6px auto;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.3);
    border: 1px solid magenta;
}

.ipod-wheel-btn {
    position: absolute;
    margin: 0;
    padding: 0;
    min-height: 0;
    line-height: 1;
    background: transparent;
    border: none;
    color: cyan;
    cursor: pointer;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.7);
}

.ipod-wheel-btn:hover {
    background: transparent;
    color: #bafcff;
    box-shadow: none;
}

.ipod-wheel-btn-menu {
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ipod-wheel-btn-prev {
    left: 10px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 18px;
}

.ipod-wheel-btn-next {
    right: 10px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 18px;
}

.ipod-wheel-btn-play {
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.ipod-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, #444, #222);
    border-radius: 50%;
    box-shadow: inset 0 0 5px cyan, 0 0 8px magenta;
}

@media (max-width: 700px) {
    .ipod-player {
        width: 214px;
        padding: 10px;
    }

    .ipod-wheel {
        width: 108px;
        height: 108px;
    }
}
