/* Modern Color-Coded Manga Type Badges */
.manga-type-badge {
    display: inline-flex !important;
    align-items: center !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0.83 !important;
    visibility: visible !important;
    z-index: 10 !important;
}

.manga-type-badge:hover {
    opacity: 1 !important;
}

.manga-type-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.manga-type-badge:hover::before {
    opacity: 1;
}

/* مانگا (Manga) */
.manga-type-manga {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 0 16px rgba(220, 38, 38, 0.2) !important;
}

/* مانهوا (Manhwa) */
.manga-type-manhwa {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 0 16px rgba(37, 99, 235, 0.2) !important;
}

/* مانها (Manhua) */
.manga-type-manhua {
    background: linear-gradient(135deg, #9333ea, #7e22ce, #6b21a8) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 12px rgba(147, 51, 234, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 0 16px rgba(147, 51, 234, 0.2) !important;
}

/* کمیک (Comic) */
.manga-type-comic {
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 0 16px rgba(245, 158, 11, 0.2) !important;
}