li {
    text-align: justify;
    line-height: 30px;
}

    li::marker {
        color: cornflowerblue;
    }


.justify {
    text-align: justify;
}
/* بخش تصاویر دایره‌ای - هرمی */
.avatar-pyramid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 130px;
}

/* تصاویر چپ و راست */
.avatar-side {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* تصویر وسط (بالاتر) */
.avatar-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px); /* بالاتر از دو طرف */
    transition: transform 0.3s ease;
    z-index: 2;
}

/* افکت هاور روی هرم */
.avatar-pyramid:hover .avatar-side {
    transform: translateY(-5px);
}

.avatar-pyramid:hover .avatar-center {
    transform: translateY(-28px);
}

@media (max-width: 480px) {
    .avatar-side {
        width: 65px;
        height: 65px;
    }

    .avatar-center {
        width: 80px;
        height: 80px;
        transform: translateY(-15px);
    }

    .avatar-pyramid {
        gap: 0.7rem;
    }
}


        .plyr--video {
            direction: ltr;
        }
        
        /* ارتفاع ثابت برای پلیر */
        .player-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background-color: #000;
            border-radius: 0.5rem;
            overflow: hidden;
        }
        
        .player-wrapper video,
        .player-wrapper .plyr {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* آیتم‌های لیست بزرگتر */
        .video-item {
            display: flex;
            gap: 15px;
            padding: 12px;
            cursor: pointer;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .video-item:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .video-item.active {
            background-color: rgba(59, 130, 246, 0.1);
        }
        
        .video-thumb {
            width: 120px;
            height: 68px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
            background: #e5e7eb;
        }
        
        .video-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .video-title {
            font-size: 15px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 5px;
        }
        
        .video-duration {
            font-size: 12px;
            color: #9ca3af;
        }
        
        .more-link {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        /* لودینگ ساده */
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            opacity: 0;
            visibility: hidden;
            border-radius: 0.5rem;
        }
        
        .loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .simple-spinner {
            width: 30px;
            height: 30px;
            border: 2px solid white;
            border-top-color: #3b82f6;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }