/* استایل اصلی پخش‌کننده */
.fmi-player-container {
    max-width: 800px;
    margin: 30px auto;
    font-family: 'iransans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

/* کارت اطلاعات آهنگ */
.fmi-song-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fmi-song-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.fmi-song-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fmi-song-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 500;
}

.fmi-song-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.fmi-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fmi-meta-icon {
    font-size: 18px;
}

/* پخش‌کننده */
.fmi-player {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.fmi-info {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

#fmi-progress {
    width: 100%;
    height: 6px;
    margin: 20px 0;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 3px;
    outline: none;
}

#fmi-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
    cursor: pointer;
}

.fmi-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.fmi-controls button {
    margin: 0;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.fmi-controls button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.fmi-controls button:active {
    transform: translateY(0);
}

#fmi-volume {
    width: 120px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 3px;
    margin-left: 20px;
}

#fmi-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.5);
    cursor: pointer;
}

/* کادر متن آهنگ - ارتفاع ثابت */
.fmi-lyrics-container {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 250px; /* ارتفاع ثابت */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fmi-lyrics-container h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
    font-weight: bold;
}

.fmi-lyrics-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(0, 0, 0, 0.1);
}

.fmi-lyrics-content::-webkit-scrollbar {
    width: 6px;
}

.fmi-lyrics-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.fmi-lyrics-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.fmi-lyrics {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fmi-lyrics p {
    margin: 8px 0;
    padding: 5px;
    transition: all 0.3s ease;
}

#fmi-lyric-fr {
    font-style: italic;
    color: #667eea;
    font-size: 17px;
    font-weight: 500;
}

#fmi-lyric-fa {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

/* کارت درباره آهنگ */
.fmi-about-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fmi-about-card h3 {
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
    font-size: 24px;
    text-align: center;
}

.fmi-about-content {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    text-align: justify;
}

/* Responsive برای موبایل */
@media (max-width: 768px) {
    .fmi-player-container {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .fmi-song-title {
        font-size: 22px;
    }
    
    .fmi-song-subtitle {
        font-size: 18px;
    }
    
    .fmi-song-meta {
        gap: 15px;
    }
    
    .fmi-meta-item {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .fmi-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .fmi-controls button {
        width: 100%;
        justify-content: center;
    }
    
    #fmi-volume {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .fmi-lyrics-container {
        height: 220px;
        padding: 20px;
    }
}