.main-callout {
    color: #f1ec00;
    font-family: Georgia, "Times New Roman", sans-serif, sans-serif;
    padding: 12px;
    border: 4px solid #000000;
    border-radius: 23px;
    background-color: #592986;
    display: inline-block;
}
body {
    text-align: center;
    background-color: #000000;
}
.main-aboutme {
    color: #f1ec00;
    border: 4px solid #592986;
    border-radius: 23px;
    font-family: Georgia, "Times New Roman", sans-serif, sans-serif;
    background-color: #592986;
    margin-top: 12px;
}
.submain-aboutme {
    color: #f1ec00;
    background-color: #592986;
    border: 3px solid #592986;
    border-radius: 23px;
    text-align: center;
    margin-left: auto;
    margin-right: 20px;
    max-width:  300px;
}
.\? {
    background: transparent;
    margin-right: 1700px;
    margin-top: 650px;
    border: 4px solid #592986;
    position: fixed;
    bottom: 0;
    left: 0;
}
.btn {
    background: olivedrab;
    border: 3px transparent solid;
    border-radius: 10px;
    color: #2d3356;
    scale: min(1.5, 1.3);
    position: fixed; top: 10px; right: 28px;
}
.btn:hover {
    box-shadow: 0 6px 10px  #7fa927, 0 6px 20px  #7fa927;
    transition: 0.5s;
}
.music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    width: fit-content;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1a1a2e;
    border: 1px solid #444;
    border-radius: 30px;
    padding: 10px 22px;
    color: #fff;
    font-size: 1rem;
    min-width: 220px;
    justify-content: space-between;
}

.song-title {
    font-style: italic;
    color: #aaa;
}

.song-title.active {
    color: #fff;
}

.mute-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.song-circles {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.song-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #555;
    background: #1a1a2e;
    color: #ccc;
    font-size: 0.72rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.3;
}

.song-circle:hover {
    border-color: #873adc;
    color: #fff;
    background: #2a2a4e;
    transform: scale(1.08);
}

.song-circle.playing {
    border-color: #a78bfa;
    background: #3b1f6e;
    color: #fff;
    box-shadow: 0 0 14px #a78bfa88;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px #a78bfa88; }
    50%       { box-shadow: 0 0 22px #a78bfacc; }
}