    .kategori-widget-container {
        background: #ffffff !important;
        border-radius: 20px !important;
        padding: 15px !important;
        border: 1px solid #f1f5f9 !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03) !important;
        margin-top: 20px !important;
        overflow: hidden;
        transition: all 0.3s ease;
        width: 100% !important;
    }

    .widget-header-v3 {
        margin-bottom: 15px;
    }

    .header-main-row-v3 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 6px;
    }

    .icon-box-folder {
        width: 32px;
        height: 32px;
        background: rgba(99, 102, 241, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .glow-folder {
        color: #6366f1 !important;
        font-size: 0.95rem;
        z-index: 2;
    }

    .folder-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #6366f1;
        border-radius: 10px;
        opacity: 0.15;
        animation: fire-pulse 2s infinite;
        z-index: 1;
    }

    .modern-title-text-v3 {
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        margin: 0 !important;
    }

    .modern-subtitle-text-v3 {
        font-size: 0.55rem !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        letter-spacing: 1px;
    }

    .modern-progress-bar-v3 {
        width: 50px;
        height: 3px;
        margin-left: 42px;
        background: transparent !important;
        border-radius: 10px;
        overflow: hidden;
    }

    .progress-fill-folder {
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #6366f1, #a855f7, #6366f1);
        background-size: 200% 100%;
        border-radius: 10px;
        animation: neon-akisi 3s linear infinite;
    }

    .cat-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .cat-item-box {
        display: block;
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        border-radius: 12px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .cat-item-box:hover {
        background: #ffffff;
        border-color: rgba(99, 102, 241, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        transform: translateX(3px);
    }

    .cat-item-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 10px;
    }

    .cat-link-main {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none !important;
        flex-grow: 1;
    }

    .cat-icon-wrap {
        width: 30px;
        height: 30px;
        background: #ffffff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        flex-shrink: 0;
        transition: 0.3s;
    }

    .cat-item-box:hover .cat-icon-wrap {
        transform: scale(1.08);
    }

    .cat-name-text {
        font-size: 0.75rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .cat-item-box:hover .cat-name-text {
        color: #6366f1;
    }

    .cat-toggle-btn {
        background: rgba(99, 102, 241, 0.08);
        border: none;
        color: #6366f1;
        width: 26px;
        height: 26px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        outline: none !important;
        flex-shrink: 0;
    }

    .cat-toggle-btn i {
        font-size: 11px;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .cat-toggle-btn:hover,
    .cat-toggle-btn.open {
        background: #6366f1;
        color: #ffffff;
        box-shadow: 0 3px 8px rgba(99, 102, 241, 0.3);
    }

    .cat-toggle-btn.open i {
        transform: rotate(180deg);
    }

    .subcat-list-wrapper {
        display: none;
        padding: 0 10px 10px 50px;
        margin: 0;
        border-top: 1px dashed #e2e8f0;
        padding-top: 8px;
        margin-top: 2px;
    }

    .subcat-link {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748b;
        text-decoration: none !important;
        padding: 5px 0;
        transition: 0.3s;
        text-transform: uppercase;
    }

    .subcat-link i {
        font-size: 9px;
        opacity: 0.5;
        transition: 0.3s;
    }

    .subcat-link:hover {
        color: #6366f1;
        transform: translateX(4px);
    }

    .subcat-link:hover i {
        color: #6366f1;
        opacity: 1;
    }

    body.dark-mode .kategori-widget-container {
        background: #27272a !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6) !important;
    }

    body.dark-mode .cat-item-box {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
    }

    body.dark-mode .cat-item-box:hover {
        background: #3f3f46;
        border-color: rgba(99, 102, 241, 0.4);
    }

    body.dark-mode .cat-icon-wrap {
        background: #18181b;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    body.dark-mode .cat-name-text {
        color: #f1f5f9;
    }

    body.dark-mode .cat-item-box:hover .cat-name-text {
        color: #818cf8;
    }

    body.dark-mode .subcat-list-wrapper {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    body.dark-mode .subcat-link {
        color: #94a3b8;
    }

    body.dark-mode .subcat-link:hover {
        color: #818cf8;
    }

    body.dark-mode .cat-toggle-btn {
        background: rgba(255, 255, 255, 0.05);
    }

    body.dark-mode .modern-title-text-v3 {
        color: #ffffff !important;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    body.dark-mode .modern-subtitle-text-v3 {
        color: #64748b !important;
    }