/* Community Board Main Container */
    .community-page {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 20px 80px;
    }

    .comm-header-banner {
        background: linear-gradient(135deg, rgba(53, 213, 191, 0.12) 0%, rgba(15, 23, 42, 0.8) 100%);
        border: 1px solid rgba(53, 213, 191, 0.25);
        border-radius: 16px;
        padding: 28px 32px;
        margin-bottom: 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .comm-banner-title {
        font-size: 26px;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 6px;
    }

    .comm-banner-desc {
        color: #94a3b8;
        font-size: 14px;
        margin: 0;
    }

    .comm-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 28px;
        align-items: start;
    }

    @media (max-width: 991px) {
        .comm-layout {
            grid-template-columns: 1fr;
        }
    }

    /* Sidebar Categories & Tags */
    .comm-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .comm-card {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 14px;
        overflow: hidden;
    }

    .comm-card-title {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #94a3b8;
        padding: 16px 20px 12px;
        border-bottom: 1px solid #1e293b;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .comm-tags-list {
        display: flex;
        flex-direction: column;
        padding: 8px 0;
    }

    .comm-tag-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        color: #cbd5e1;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .comm-tag-item:hover,
    .comm-tag-item.active {
        background: rgba(53, 213, 191, 0.1);
        color: var(--accent);
        border-left: 3px solid var(--accent);
    }

    .comm-tag-badge {
        font-size: 11px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        color: #94a3b8;
    }

    .comm-tag-item.active .comm-tag-badge {
        background: rgba(53, 213, 191, 0.2);
        color: var(--accent);
    }

    /* Community Post Composer Box */
    .comm-composer-box {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 14px;
        padding: 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .comm-composer-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .comm-composer-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(53, 213, 191, 0.4);
    }

    .comm-composer-avatar-placeholder {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #1e293b;
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 15px;
        border: 2px solid rgba(53, 213, 191, 0.4);
    }

    .comm-composer-title {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    .comm-composer-textarea {
        width: 100%;
        background: #090d16;
        border: 1px solid #1e293b;
        border-radius: 10px;
        color: #f8fafc;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.5;
        resize: vertical;
        min-height: 90px;
        transition: all 0.2s ease;
    }

    .comm-composer-textarea:focus {
        border-color: var(--accent);
        outline: none;
        box-shadow: 0 0 12px rgba(53, 213, 191, 0.2);
    }

    .comm-composer-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .comm-composer-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .comm-select {
        background: #090d16;
        border: 1px solid #1e293b;
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 8px;
        cursor: pointer;
    }

    .comm-select:focus {
        border-color: var(--accent);
        outline: none;
    }

    .comm-post-btn {
        background: var(--accent);
        color: #0d121d;
        border: none;
        padding: 8px 24px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .comm-post-btn:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(53, 213, 191, 0.4);
    }

    /* Main Feed Controls */
    .comm-feed-header {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 14px;
        padding: 16px 20px;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .comm-sort-tabs {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(15, 23, 42, 0.6);
        padding: 4px;
        border-radius: 10px;
        border: 1px solid #1e293b;
    }

    .comm-sort-btn {
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.2s;
    }

    .comm-sort-btn:hover {
        color: #fff;
    }

    .comm-sort-btn.active {
        background: var(--accent);
        color: #0d121d;
        font-weight: 700;
    }

    .comm-search-form {
        display: flex;
        align-items: center;
        position: relative;
    }

    .comm-search-input {
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid #1e293b;
        border-radius: 10px;
        color: #fff;
        padding: 8px 14px 8px 36px;
        font-size: 13px;
        width: 220px;
        transition: all 0.2s ease;
    }

    .comm-search-input:focus {
        border-color: var(--accent);
        outline: none;
        box-shadow: 0 0 10px rgba(53, 213, 191, 0.25);
        width: 260px;
    }

    .comm-search-icon {
        position: absolute;
        left: 12px;
        color: #64748b;
        font-size: 14px;
        pointer-events: none;
    }

    /* Pinned Announcements Strip */
    .comm-pinned-box {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .comm-pin-item {
        background: linear-gradient(90deg, rgba(53, 213, 191, 0.08) 0%, rgba(15, 23, 42, 0.95) 100%);
        border: 1px solid rgba(53, 213, 191, 0.35);
        border-radius: 12px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
        color: #fff;
        transition: all 0.2s ease;
    }

    .comm-pin-item:hover {
        transform: translateY(-2px);
        border-color: var(--accent);
        color: #fff;
        box-shadow: 0 6px 20px rgba(53, 213, 191, 0.15);
    }

    .comm-pin-badge {
        background: var(--accent);
        color: #0d121d;
        font-weight: 800;
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        text-transform: uppercase;
        flex-shrink: 0;
    }

    .comm-pin-text {
        font-size: 14px;
        font-weight: 600;
        color: #f1f5f9;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Post Cards */
    .comm-posts-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .comm-post-card {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 14px;
        padding: 20px;
        transition: all 0.2s ease;
        display: flex;
        gap: 16px;
    }

    .comm-post-card:hover {
        border-color: rgba(53, 213, 191, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .comm-post-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid rgba(53, 213, 191, 0.3);
    }

    .comm-post-avatar-placeholder {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #1e293b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        color: var(--accent);
        border: 2px solid rgba(53, 213, 191, 0.3);
        flex-shrink: 0;
    }

    .comm-post-content {
        flex: 1;
        min-width: 0;
    }

    .comm-post-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .comm-post-user {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
    }

    .comm-post-user:hover {
        color: var(--accent);
    }

    .comm-post-meta {
        font-size: 12px;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .comm-post-anime-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(53, 213, 191, 0.12);
        color: var(--accent);
        font-size: 12px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 6px;
        text-decoration: none;
        margin-bottom: 10px;
        transition: all 0.2s;
    }

    .comm-post-anime-tag:hover {
        background: var(--accent);
        color: #0d121d;
    }

    .comm-post-body {
        color: #cbd5e1;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
        word-break: break-word;
    }

    .comm-post-actions {
        display: flex;
        align-items: center;
        gap: 18px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .comm-post-act-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.2s ease;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .comm-post-act-btn:hover {
        color: var(--accent);
    }

    .comm-empty-state {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 14px;
        padding: 60px 20px;
        text-align: center;
    }

    .comm-empty-icon {
        font-size: 48px;
        color: #475569;
        margin-bottom: 14px;
    }

    .comm-empty-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .comm-empty-desc {
        color: #94a3b8;
        font-size: 14px;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    /* Active Anime Widget */
    .active-anime-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        border-bottom: 1px solid #1e293b;
        text-decoration: none;
        color: #cbd5e1;
        transition: all 0.2s;
    }

    .active-anime-item:last-child {
        border-bottom: none;
    }

    .active-anime-item:hover {
        background: rgba(53, 213, 191, 0.08);
        color: #fff;
    }

    .active-anime-poster {
        width: 38px;
        height: 52px;
        border-radius: 6px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .active-anime-name {
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }

    .active-anime-badge {
        font-size: 11px;
        font-weight: 700;
        color: var(--accent);
        background: rgba(53, 213, 191, 0.15);
        padding: 2px 7px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }