/* ================================
   مرحله ۱۶ – زیباسازی بخش چالش‌ها
   فایل: challenges.css
================================ */

/* ساختار کلی لیست‌ها */
.ucs-list-section {
    margin-top: 30px;
    margin-bottom: 40px;
}

.ucs-list-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

/* کارت چالش‌ها */
.ucs-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.ucs-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* عنوان چالش */
.ucs-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

/* اطلاعات چالش */
.ucs-item p {
    margin: 6px 0;
    font-size: 15px;
    color: #444;
}

/* دکمه مشاهده چالش */
.ucs-view-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: #0073e6;
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.25s ease;
}

.ucs-view-btn:hover {
    background: #005bb5;
}

/* Badge وضعیت */
.ucs-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
    color: #fff;
}

.ucs-badge-active {
    background: #28a745;
}

.ucs-badge-finished {
    background: #dc3545;
}

/* Badge جنسیت */
.ucs-badge-gender {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
    color: #fff;
}

.ucs-gender-all {
    background: #d4af37;
}

.ucs-gender-female {
    background: #ff69b4;
}

.ucs-gender-male {
    background: #1e90ff;
}

/* نتیجه چالش */
.ucs-result-winner {
    color: #28a745;
    font-weight: bold;
}

.ucs-result-loser {
    color: #dc3545;
    font-weight: bold;
}

/* آیکون‌ها */
.ucs-icon {
    font-size: 18px;
    margin-right: 6px;
}

/* فاصله‌ها */
.ucs-space {
    height: 20px;
}
