.music-status {
    margin-top: 4rem;
    background: rgba(26, 28, 43, 0.9);
    border-radius: 12px;
    padding: 16px;
    width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-family: "gg sans SemiBold Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.music-status:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.2);
}

.music-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(204, 213, 115, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-text {
    color: #ccd573;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    text-shadow: 0 0 8px rgba(204, 213, 115, 0.3);
}

.music-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.album-art-container {
    flex-shrink: 0;
}

.album-art {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.music-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active {
    background: #ccd573;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(204, 213, 115, 0.5);
}

.status-dot.inactive {
    background: rgb(140, 140, 140);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.song-name {
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.artist-name {
    color: rgb(220, 220, 220);
    font-size: 0.95em;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-name {
    color: rgb(140, 140, 140);
    font-size: 0.85em;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(204, 213, 115, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(204, 213, 115, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(204, 213, 115, 0); }
}

.song-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.song-link:hover .song-name {
    color: #ccd573;
}