     .akis-feed-root .feed-container {
            background: #f5f6fa;
            min-height: 100vh;
            padding-top: 10px;
        }
        .akis-feed-root .feed-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 16px;
            background: #efebeb;
            border-radius: 10px;
            box-shadow: 0 1px 4px #0001;
            padding: 10px 10px 10px 10px;
            font-size: 15px;
        }
        .akis-feed-root .feed-header form {
            display: flex;
            align-items: stretch;
            gap: 0;
            margin: 0;
        }
        .akis-feed-root .feed-header input[type="text"] {
            padding: 4px 10px;
            border-radius: 16px 0 0 16px;
            border: 1px solid #e0e0e0;
            font-size: 13px;
            min-width: 120px;
            max-width: 170px;
            height: 28px;
            background: #f5f6fa;
            outline: none;
        }
        .akis-feed-root .feed-header button[type="submit"], 
        .akis-feed-root .feed-header button[type="button"] {
            padding: 0 10px;
            border-radius: 0 16px 16px 0;
            border: 1px solid #1877f2;
            border-left: none;
            background: #1877f2;
            color: #fff;
            font-size: 15px;
            height: 28px;
            display: inline-flex;
            align-items: center;
        }
        .akis-feed-root .feed-header button[type="button"] {
            border: 1px solid #dc3545;
            background: #dc3545;
        }
        .akis-feed-root .my-posts {
            margin-left: 6px;
            padding: 2px 10px;
            border-radius: 14px;
            background: #eaf4ff;
            color: #f21818;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }
        .akis-feed-root .feed-list {
            max-width: 460px;
            margin: 0 auto;
        }
        .akis-feed-root .post-box {
            background: #f7f5f5;
            border-radius: 10px;
            box-shadow: 0 1px 4px #0001;
            margin-bottom: 14px;
            padding: 10px 12px 7px 12px;
            display: flex;
            flex-direction: column;
            gap: 7px;
            font-size: 14px;
        }
        .akis-feed-root .create-post-trigger {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 1px 4px #0001;
            margin-bottom: 14px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            min-height: 34px;
            cursor: pointer;
            transition: box-shadow 0.1s, border 0.1s;
            border: 1px solid #e0e0e0;
            position: relative;
        }
        .akis-feed-root .create-post-trigger:hover,
        .akis-feed-root .create-post-trigger:focus {
            box-shadow: 0 2px 8px #1877f203;
            border: 1px solid #1877f2;
            background: #f5f6fa;
        }
        .akis-feed-root .create-post-trigger span {
            color: #888;
            font-size: 13px;
            padding-left: 8px;
            z-index: 1;
        }
        .akis-feed-root .create-post-trigger .fa-pen, 
        .akis-feed-root .create-post-trigger .icon-animate {
            color: #1877f2;
            font-size: 15px;
            margin-left: 4px;
        }
        .akis-feed-root .create-post-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0; top: 0; width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.80);
            align-items: center;
            justify-content: center;
        }
        .akis-feed-root .create-post-modal-inner {
            background: #fff;
            border-radius: 10px;
            max-width: 400px;
            width: 97vw;
            box-shadow: 0 8px 32px #0002;
            padding: 27px 14px 19px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            animation: modalIn .16s cubic-bezier(.5,1.4,.5,.95);
        }
        @keyframes modalIn {
            from { transform: translateY(28px) scale(.97); opacity:0; }
            to { transform: translateY(0) scale(1); opacity:1; }
        }
        .akis-feed-root .modal-close {
            position: absolute;
            right: 10px; top: 2px;
            font-size: 25px;
            color: #0e0101;
            cursor: pointer;
            background: none;
            border: none;
        }
        .akis-feed-root .create-post-modal textarea {
            width: 100%;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            resize: none;
            font-size: 14px;
            padding: 8px 10px;
            background: #f5f6fa;
            min-height: 38px;
        }
        .akis-feed-root .post-actions-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2px;
        }
        .akis-feed-root .post-actions-bar .left {
            display: flex;
            align-items: center;
        }
        .akis-feed-root .post-action-btn {
            display: flex;
            align-items: center;
            gap: 3px;
            background: #f0f2f5;
            color: #444;
            border: none;
            border-radius: 12px;
            padding: 2px 8px;
            cursor: pointer;
            font-size: 13px;
            transition: background 0.1s;
        }
        .akis-feed-root .post-action-btn:hover {
            background: #eaf4ff;
        }
        .akis-feed-root .image-preview-container {
            display: none;
            align-items: center;
            gap: 5px;
            margin-top: 3px;
            position: relative;
        }
        .akis-feed-root .image-preview-wrapper img {
            max-width: 100px;
            max-height: 100px;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        .akis-feed-root .upload-indicator {
            position: absolute;
            top: 2px;
            left: 2px;
            background: #fff;
            border-radius: 50%;
            padding: 2px 3px;
            box-shadow: 0 0 4px #eee;
            display: flex;
            align-items: center;
            gap: 2px;
            color: #22bb33;
            font-size: 11px;
            opacity: 1;
            transition: opacity 0.3s;
        }
        .akis-feed-root .remove-image-btn {
            background: #dc3545;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            right: -7px;
            top: -7px;
            z-index: 2;
        }
        .akis-feed-root .post-header {
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .akis-feed-root .post-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #eee;
        }
        .akis-feed-root .post-user-info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .akis-feed-root .post-username {
            font-weight: 600;
            color: #333;
            text-decoration: none;
            font-size: 13px;
        }
        .akis-feed-root .post-time {
            color: #aaa;
            font-size: 11px;
        }
        .akis-feed-root .post-content {
            display: flex;
            flex-shrink: 0;
    flex-grow: 1;

            flex-direction: column;
            gap: 4px;
            word-break: break-word;
            font-size: 13px;
        }
        .akis-feed-root .post-text-truncate {
            word-break: break-word;
        }
        .akis-feed-root .post-text-full {
            display: none;
        }
        .akis-feed-root .continue-reading-link {
            display: inline;
            color: #1877f2;
            vertical-align: baseline;
            cursor: pointer;
            font-size: 12px;
            margin-left: 4px;
            text-decoration: underline;
        }
        .akis-feed-root .post-text {
            color: #333;
        }
        .akis-feed-root .post-image img {
            max-width: 95%;
            max-height: 180px;
            object-fit: cover;
            border-radius: 7px;
            border: 1px solid #eee;
            margin: 0 auto;
            display: block;
            cursor: pointer;
        }
        .akis-feed-root .post-actions {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-top: 2px;
        }
        .akis-feed-root .comment-btn {
           background: none;
            border: none;
            color: #000000;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            transition: color 0.15s;
            padding: 0 3px;
            
            
        }
        .akis-feed-root .comment-btn:disabled { opacity: 0.6; cursor: not-allowed;}
        .akis-feed-root .comments-section {
            margin-top: 5px;
            display: none;
            flex-direction: column;
            gap: 5px;
        }
        .akis-feed-root .comment {
            display: flex;
            align-items: flex-start;
            gap: 7px;
            background: #efefef;
            border-radius: 8px;
            padding: 5px 8px;
            margin-bottom: 6px;
        }
        .comments-section {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}
.comment {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.comment-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.comment-content {
    min-width: 0;
    flex: 1 1 0%;
}

.comment-text {
    font-size: 14px;
    margin-bottom: 2px;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.comment-date {
    font-size: 12px;
    color: #888;
}
.comment-form-container input[type="text"] {
    max-width: 100%;
    width: 100%;
    font-size: 14px;
}
        .akis-feed-root .comment-avatar img {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #eee;
        }
        .akis-feed-root .comment-content {
            display: flex;
            flex-direction: column;
        }
        .akis-feed-root .comment-name {
            margin: 0;
            font-weight: 500;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 160px;
        }
        .akis-feed-root .comment-text {
            font-size: 12px;
            color: #333;
        }
        .akis-feed-root .comment-date {
            font-size: 10px;
            color: #aaa;
        }
        .akis-feed-root .comment-form-container {
            margin-top: 5px;
        }
        .akis-feed-root .comment-form {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .akis-feed-root .comment-input {
            flex: 1;
            border-radius: 12px;
            border: 1px solid #eee;
            background: #f5f6fa;
            padding: 4px 8px;
            font-size: 12px;
        }
        .akis-feed-root .comment-submit {
            border: none;
            background: #1877f2;
            color: #ffffff;
            border-radius: 11px;
            padding: 2px 9px;
            cursor: pointer;
            font-size: 13px;
        }
        .akis-feed-root .login-prompt {
            font-size: 12px;
            color: #888;
            margin-top: 1px;
        }
        .akis-feed-root .login-prompt a {
            color: #1877f2;
            text-decoration: underline;
        }
        @media (max-width: 500px) {
            .akis-feed-root .feed-list { max-width: 100vw; }
            .akis-feed-root .feed-header { flex-direction: column; gap: 4px; }
            .akis-feed-root .post-box, .akis-feed-root .create-post-trigger { padding: 7px 2vw 6px 2vw; }
            .akis-feed-root .create-post-modal-inner { max-width: 98vw; }
        }