/* --- RADYO VE İSTEK ŞARKI MODÜLÜ --- */
.msg-song-box {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: var(--radius-lg); 
    padding: 16px 20px; 
    margin: 12px 0;
    display: flex; 
    align-items: center; 
    gap: 18px;
    min-width: 280px;
    max-width: 380px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(56, 189, 248, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.msg-song-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(56, 189, 248, 0.1);
}

.msg-song-box::before {
    content: ''; 
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #38bdf8, #2563eb, #38bdf8);
    background-size: 200% auto;
    animation: neonFlow 3s linear infinite;
}
@keyframes neonFlow { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

.vinyl-record-container {
    position: relative;
    width: 64px; height: 64px;
    flex-shrink: 0;
}

.vinyl-record {
    width: 100%; height: 100%;
    background: repeating-radial-gradient(
        #0f172a, #0f172a 3px, #1e293b 4px, #1e293b 5px
    );
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.8), 0 0 20px rgba(56, 189, 248, 0.4);
    animation: spinPlak 3s linear infinite;
    border: 2px solid #020617;
    position: relative;
}

.vinyl-record::after {
    content: '';
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #38bdf8, #1d4ed8);
    border-radius: 50%;
    border: 2px solid #020617;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.8);
}

.vinyl-record::before {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #020617;
    border-radius: 50%;
    z-index: 2;
}

.floating-notes {
    position: absolute; top: -5px; right: -5px;
    font-size: 16px; 
    animation: floatNote 2.5s ease-in-out infinite alternate;
}

@keyframes spinPlak { 100% { transform: rotate(360deg); } }
@keyframes floatNote { 
    0% { transform: translateY(0) scale(0.8) rotate(-10deg); opacity: 0.5; text-shadow: 0 0 0 transparent; } 
    100% { transform: translateY(-12px) scale(1.15) rotate(15deg); opacity: 1; text-shadow: 0 0 12px #38bdf8; } 
}

.msg-song-content { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.msg-song-title { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 6px; letter-spacing: -0.3px; line-height: 1.3; }
.msg-song-title span { background: -webkit-linear-gradient(0deg, #38bdf8, #e0e7ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.msg-song-for { font-size: 12px; color: #f8fafc; font-weight: 600; background: rgba(37, 99, 235, 0.3); padding: 4px 12px; border-radius: 12px; width: fit-content; border: 1px solid rgba(59, 130, 246, 0.5); display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.msg-song-note { font-size: 12px; color: #cbd5e1; font-style: italic; background: rgba(2, 6, 23, 0.5); padding: 8px 12px; border-radius: var(--radius-sm); border-left: 3px solid #38bdf8; margin-top: 4px; line-height: 1.4; }