body {
    margin: 0;
    padding: 20px;
    background: linear-gradient(45deg, #d3d6cf, #f0e6d6);
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(-10deg);
    
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

.music-player {
    width: 230px;
    height: 380px;
    background: linear-gradient(145deg, #dfdfdd, #e2e1df);
    border-radius: 25px;
    outline: 6px solid rgba(225, 224, 222, 0.5);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.3),
        inset 0 2px 10px rgba(255,255,255,0.7),
        inset 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    
}

.player-header {
    text-align: center;
    margin-bottom: 15px;
}

.brand-name {
    font-size: 14px;
    font-weight: bold;
    height: 22px;
    color: #8b6f47;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.screen {
    width: 93%;
    left: 2%;
    height: 150px;
    /*background: linear-gradient(145deg, #234b36, #1e3d2f);*/
        /*background: linear-gradient(145deg, #9ba080, #696d57);*/
        background: linear-gradient(145deg, #bedab2, #6a8165);

    
    
        /*background: linear-gradient(145deg, #a9aca1, #767971);*/

    border: 6px solid #979e93;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,0.5),
        0 2px 4px rgba(255,255,255,0.3);
    overflow: hidden;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,255,100,0.03) 2px,
        rgba(0,255,100,0.03) 4px
    );
    pointer-events: none;
}

.display-content {
    padding: 15px;
    /*color: #00ff88;*/
    color: #1f2c1e;
    font-size: 11px;
    text-shadow: 0 0 8px currentColor;
    height: 100%;
    box-sizing: border-box;
}

.volume-display {
  display: none; 
  flex-direction: column; 
  justify-content: center; 
  height: 100%; 
  text-align: center;
  transition: opacity 0.2s ease, visibility 0.2s ease, display 0.2s ease;
}

.now-playing {
    font-size: 9px;
    margin-bottom: 8px;
    opacity: 0.8;
}

 @keyframes blink {
    0%, 50% { opacity: 0.7; }
    51%, 100% { opacity: 0; }
}

.song-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist {
    font-size: 10px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    /*background: rgba(0,255,136,0.3);*/
    background: rgba(84, 96, 81,0.3);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    /*background: linear-gradient(90deg, #00ff88, #00cc66);*/
    background: linear-gradient(90deg, #343725, #585d3e);

    width: 0%;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite alternate;
}

/*00ff88*/
@keyframes pulse {
    from { box-shadow: 0 0 5px #b8c36e; }
    to { box-shadow: 0 0 15px #b8c36e; }
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    opacity: 0.8;
}

.control-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-controls {
    display: flex;
    gap:15px;
    align-items: center;
}

.control-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #8b6f47;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0e6d6, #d4c4b0);
    box-shadow:
        0 4px 8px rgba(0,0,0,0.2),
        inset 0 2px 4px rgba(255,255,255,0.8),
        inset 0 -2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #5a4a3a;
    transition: all 0.1s ease;
    user-select: none;
}

.control-btn:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.8),
        inset 0 -1px 2px rgba(0,0,0,0.1);
}

.play-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #e8d5c4, #c4b49a);
    border: 3px solid #8b6f47;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.vol-label {
    font-size: 10px;
    color: #8b6f47;
    font-weight: bold;
}

.volume-controls {
    display: flex;
    gap: 8px;
}

.vol-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #8b6f47;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0e6d6, #d4c4b0);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #5a4a3a;
    transition: all 0.1s ease;
}

.vol-btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

.decorative-elements {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 8px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ebc48d;
    box-shadow: 0 0 9px currentColor;
    animation: blink 3s ease-in-out infinite;
}

.led.green {
    background: #abc4b6;
    animation-delay: -1s;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.speaker-grilles {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.grille {
    width: 60px;
    height: 20px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(139,111,71,0.4) 3px,
            rgba(139,111,71,0.4) 4px
        );
    border: 1px solid rgba(139,111,71,0.3);
    border-radius: 10px;
}





/* Sticker system */
        .stickers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .sticker {
            position: absolute;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .sticker:hover {
            opacity: 1;
        }

        /* Position your stickers */
        .sticker-1 {
            width: auto;
            height: 23%;
            bottom: 50px;
            left: -5px;
            transform: rotate(-22deg);
        }

        .sticker-2 {
            width: auto;
            height: 28%;
            top: 152px;
            right: -20px;
            transform: rotate(30deg);
        }

        .sticker-3 {
            width: auto;
            height: 23%;
            bottom: 15px;
            right: 8px;
            transform: rotate(-9deg);
        }

        .sticker-4 {
            width: auto;
            height: 18%;
            top: 0px;
            left: 25px;
            transform: rotate(-10deg);
        }
