
    /* =========================================================================
       CSS NORMAL DA MODAL DE COMENTÁRIOS E FEED (SUBSTITUINDO O TAILWIND)
       ========================================================================= */

    /* Classes Globais e Scrollbar Invisível */
    .ead-invisible-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
    .ead-invisible-scrollbar::-webkit-scrollbar { display: none; width: 0; background: transparent; }
    
    .ead-hidden { display: none !important; }

    /* Overlay da Modal */
    .ead-modal-overlay {
        position: fixed; inset: 0; z-index: 999999;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        display: flex; align-items: center; justify-content: center;
        padding: 0; transition: opacity 0.3s;
    }

    /* Caixa da Modal */
    .ead-modal-box {
        background-color: #ffffff; width: 100%; height: 100%; max-width: none;
        border-radius: 0; border: none; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        display: flex; flex-direction: column; overflow: hidden; position: relative;
    }
    .dark .ead-modal-box { background-color: #111827; }

    /* Área de Scroll e Topo */
    .ead-modal-scroll { flex: 1; overflow-y: auto; width: 100%; display: flex; flex-direction: column; position: relative; }
    .ead-modal-close-btn {
        position: absolute; top: 1rem; right: 1rem; z-index: 100;
        width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center;
        background-color: #ffffff; color: #1f2937; border-radius: 50%;
        transition: all 0.2s; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        pointer-events: auto; border: none; cursor: pointer;
    }
    .ead-modal-close-btn:hover { background-color: #f3f4f6; }
    .ead-modal-close-btn:active { transform: scale(0.95); }

    .ead-modal-list { padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
    @media (min-width: 640px) { .ead-modal-list { padding-left: 1.5rem; padding-right: 1.5rem; } }

    /* Área do Input de Comentário */
    .ead-modal-input-area {
        width: 100%; background-color: #ffffff; border-top: 1px solid #e5e7eb;
        padding: 0.75rem; margin-top: auto; z-index: 90;
        box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.05); position: relative;
    }
    .dark .ead-modal-input-area { background-color: #1f2937; border-top-color: #374151; }

    /* Modal Flutuante de Emojis */
    .ead-emoji-modal {
        position: absolute; z-index: 100000;
        background-color: #ffffff; border: 1px solid #e5e7eb; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        border-radius: 0.75rem; padding: 0.5rem; width: 90vw; max-width: 220px;
        bottom: 100%; left: 0.5rem; margin-bottom: 0.5rem; display: flex; flex-direction: column;
    }
    @media (min-width: 640px) { .ead-emoji-modal { left: 1rem; } }
    .dark .ead-emoji-modal { background-color: #1f2937; border-color: #374151; }

    .ead-emoji-modal-header { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; padding-bottom: 0.25rem; border-bottom: 1px solid #f3f4f6; }
    .dark .ead-emoji-modal-header { border-bottom-color: #374151; }
    .ead-emoji-modal-title { font-size: 0.65rem; font-weight: 700; color: #6b7280; text-transform: uppercase; display: flex; align-items: center; gap: 0.375rem; }
    .ead-emoji-modal-close { color: #9ca3af; background: none; border: none; cursor: pointer; transition: color 0.2s; }
    .ead-emoji-modal-close:hover { color: #ef4444; }
    
    .ead-emoji-modal-grid { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem; font-size: 1.125rem; max-height: 100px; overflow-y: auto; padding: 0.25rem; scrollbar-width: thin; }
    .ead-emoji-item { cursor: pointer; transition: transform 0.2s; background-color: #f3f4f6; border-radius: 0.25rem; padding: 0.25rem; width: 1.75rem; height: 1.75rem; display: flex; align-items: center; justify-content: center; }
    .dark .ead-emoji-item { background-color: #374151; }
    .ead-emoji-item:hover { transform: scale(1.1); }

    /* Topo do Comentário (Imagem Grande) */
    .ead-topo-wrapper { position: relative; width: 100%; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; flex-shrink: 0; overflow: hidden; }
    @media (min-width: 640px) { .ead-topo-wrapper { min-height: 180px; } }
    .ead-topo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .ead-topo-overlay { position: absolute; inset: 0; background-color: rgba(255,255,255,0.4); backdrop-filter: blur(2px); }
    .dark .ead-topo-overlay { background-color: rgba(0,0,0,0.4); }
    .ead-topo-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; margin-top: auto; }
    
    .ead-topo-avatar { width: 3rem; height: 3rem; border-radius: 50%; border: 2px solid #ffffff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); object-fit: cover; margin-bottom: 0.5rem; }
    @media (min-width: 640px) { .ead-topo-avatar { width: 4rem; height: 4rem; } }
    .ead-topo-title { color: #111827; font-weight: 700; font-size: 1.125rem; text-shadow: 0 1px 2px rgba(0,0,0,0.05); line-height: 1.25; margin: 0; }
    .dark .ead-topo-title { color: #ffffff; }
    .ead-topo-subtitle { color: #374151; font-size: 0.75rem; margin-bottom: 0.75rem; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,0.05); margin-top: 0; }
    .dark .ead-topo-subtitle { color: #e5e7eb; }
    
    .ead-topo-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
    .ead-topo-stat-badge { background-color: rgba(255,255,255,0.8); color: #1f2937; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 0.25rem; border: 1px solid #e5e7eb; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); display: flex; align-items: center; gap: 0.375rem; }
    .dark .ead-topo-stat-badge { background-color: rgba(0,0,0,0.5); color: #ffffff; border-color: #4b5563; }

    /* Barra de Ferramentas e Input do Comentário */
    .ead-ci-wrapper { display: flex; flex-direction: column; width: 100%; }
    .ead-ci-toolbar { display: flex; align-items: center; gap: 0.375rem; background-color: #f3f4f6; padding: 0.375rem 0.5rem; border-radius: 0.5rem; margin-bottom: 0.5rem; width: 100%; }
    .dark .ead-ci-toolbar { background-color: rgba(55,65,81,0.5); }
    .ead-ci-btn { color: #6b7280; font-size: 0.7rem; width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 0.25rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: all 0.2s; background: none; border: none; cursor: pointer; }
    .dark .ead-ci-btn { color: #d1d5db; }
    .ead-ci-btn:hover { color: #f97316; background-color: #ffffff; }
    .dark .ead-ci-btn:hover { background-color: #4b5563; }
    
    .ead-ci-btn-rel { position: relative; color: #6b7280; font-size: 0.7rem; width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 0.25rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: all 0.2s; background: none; }
    .dark .ead-ci-btn-rel { color: #d1d5db; }
    .ead-ci-btn-rel:hover { color: #f97316; background-color: #ffffff; }
    .dark .ead-ci-btn-rel:hover { background-color: #4b5563; }
    .ead-ci-color-input { width: 100%; height: 100%; opacity: 0; cursor: pointer; position: absolute; inset: 0; border: none; padding: 0; }
    
    .ead-ci-preview-container { width: 100%; }
    .ead-ci-input-row { display: flex; align-items: center; gap: 0.5rem; width: 100%; }
    .ead-ci-avatar { width: 2rem; height: 2rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid #e5e7eb; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
    .ead-ci-textarea { flex: 1; min-height: 32px; max-height: 80px; overflow-y: auto; outline: none; font-size: 0.8rem; color: #1f2937; background-color: #f9fafb; border-radius: 0.25rem; padding: 0.375rem 0.75rem; border: 1px solid #e5e7eb; box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06); transition: all 0.2s; width: 100%; }
    .dark .ead-ci-textarea { color: #f3f4f6; background-color: rgba(55,65,81,0.6); border-color: #4b5563; }
    .ead-ci-textarea:focus { border-color: #f97316; }
    .ead-ci-textarea[placeholder]:empty:before { content: attr(placeholder); color: #9ca3af; pointer-events: none; display: block; }
    .ead-ci-send-btn { width: 2rem; height: 2rem; border-radius: 50%; background-color: #f97316; color: #ffffff; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1); transition: all 0.2s; flex-shrink: 0; cursor: pointer; font-size: 0.75rem; border: none; }
    .ead-ci-send-btn:hover { background-color: #ea580c; }
    .ead-ci-send-btn.success { background-color: #22c55e; }

    /* Caixa de Comentário Único */
    .ead-sc-badge-owner { background: linear-gradient(to right, #f97316, #ef4444); color: #ffffff; font-size: 0.55rem; padding: 0.125rem 0.375rem; border-radius: 0.25rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); margin-left: 0.25rem; display: inline-flex; align-items: center; gap: 0.25rem; }
    .ead-sc-bg-owner { background-color: rgba(255,247,237, 0.6); border: 1px solid #fed7aa; }
    .dark .ead-sc-bg-owner { background-color: rgba(124,45,18,0.2); border-color: rgba(154,52,18,0.5); }
    .ead-sc-bg-normal { background-color: #f9fafb; border: 1px solid #f3f4f6; }
    .dark .ead-sc-bg-normal { background-color: #1f2937; border-color: #374151; }

    .ead-sc-row { display: flex; gap: 0.5rem; align-items: flex-start; width: 100%; margin-bottom: 0.5rem; }
    .ead-sc-avatar-wrap { flex-shrink: 0; margin-top: 0.25rem; display: block; }
    .ead-sc-avatar { width: 2rem; height: 2rem; border-radius: 50%; object-fit: cover; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid #e5e7eb; }
    .ead-sc-body { display: flex; flex-direction: column; width: 100%; min-width: 0; }
    .ead-sc-time-wrap { padding: 0 0.25rem 0.125rem 0.25rem; margin-bottom: -0.25rem; }
    .ead-sc-time { font-size: 0.6rem; color: #111827; }
    .dark .ead-sc-time { color: #d1d5db; }
    
    .ead-sc-bubble { border-radius: 0.75rem; padding: 0.5rem 0.75rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); width: 100%; position: relative; display: flex; flex-direction: column; transition: all 0.2s; }
    .ead-sc-bubble-head { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 0; }
    .ead-sc-author { font-weight: 700; font-size: 0.8rem; color: #111827; transition: color 0.2s; text-decoration: none; display: flex; align-items: center; }
    .dark .ead-sc-author { color: #f3f4f6; }
    .ead-sc-author:hover { color: #f97316; }
    .ead-sc-text { color: #1f2937; font-size: 0.8rem; word-break: break-word; margin-top: 0; line-height: 1.375; }
    .dark .ead-sc-text { color: #e5e7eb; }
    .ead-sc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.25rem; padding-top: 0.375rem; border-top: 1px solid rgba(229,231,235,0.5); width: 100%; }
    .dark .ead-sc-footer { border-top-color: rgba(55,65,81,0.5); }

    /* Menu Dropdown de Comentário */
    .ead-sc-menu-wrap { position: relative; display: inline-block; text-align: right; z-index: 20; }
    .ead-sc-menu-btn { color: #9ca3af; padding: 0.25rem; transition: color 0.2s; border-radius: 50%; background: none; border: none; cursor: pointer; outline: none; }
    .ead-sc-menu-btn:hover { color: #f97316; background-color: #e5e7eb; }
    .dark .ead-sc-menu-btn:hover { background-color: #374151; }
    .ead-sc-dropdown { position: absolute; right: 0; margin-top: 0.25rem; width: 7rem; background-color: #ffffff; border-radius: 0.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #f3f4f6; z-index: 60; display: flex; flex-direction: column; overflow: hidden; backdrop-filter: blur(12px); }
    .dark .ead-sc-dropdown { background-color: #1f2937; border-color: #374151; }
    .ead-sc-drop-item { width: 100%; text-align: left; padding: 0.5rem 0.75rem; font-size: 0.7rem; font-weight: 700; color: #374151; transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; background: none; border: none; cursor: pointer; }
    .dark .ead-sc-drop-item { color: #e5e7eb; }
    .ead-sc-drop-item:hover { background-color: #fff7ed; color: #f97316; }
    .dark .ead-sc-drop-item:hover { background-color: #374151; }
    .ead-sc-drop-divider { width: 100%; height: 1px; background-color: #e5e7eb; }
    .dark .ead-sc-drop-divider { background-color: #374151; }

    /* Ação e Visualização de Curtida de Comentário */
    .ead-cl-action-wrap { position: relative; display: inline-block; }
    .ead-cl-action-btn { font-size: 0.7rem; display: flex; align-items: center; gap: 0.25rem; font-weight: 700; cursor: pointer; transition: color 0.2s; color: #6b7280; }
    @media (min-width: 640px) { .ead-cl-action-btn { font-size: 0.75rem; } }
    .ead-cl-action-btn:hover, .ead-cl-action-btn.liked { color: #f97316; }
    
    .ead-cl-action-picker { position: absolute; bottom: 100%; left: 0; margin-bottom: 0.5rem; background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 9999px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); padding: 0.5rem 0.75rem; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 100; display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; }
    .dark .ead-cl-action-picker { background-color: #1f2937; border-color: #374151; }
    .ead-cl-action-wrap:hover .ead-cl-action-picker { opacity: 1; visibility: visible; }
    .ead-cl-emoji-btn { cursor: pointer; transition: transform 0.2s; }
    .ead-cl-emoji-btn:hover { transform: scale(1.25); }

    .ead-cl-preview-wrap { position: relative; display: inline-flex; align-items: center; cursor: pointer; margin-left: auto; }
    .ead-cl-count-badge { display: flex; align-items: center; gap: 0.25rem; font-size: 0.65rem; font-weight: 700; color: #f97316; background-color: #fff7ed; padding: 0.25rem 0.5rem; border-radius: 9999px; border: 1px solid #ffedd5; }
    .dark .ead-cl-count-badge { background-color: rgba(124,45,18,0.3); border-color: rgba(154,52,18,1); }
    .ead-cl-tooltip { position: absolute; bottom: 100%; right: 0; margin-bottom: 0.5rem; width: 13rem; background-color: #ffffff; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid #f3f4f6; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 9999; padding: 0.25rem; backdrop-filter: blur(4px); }
    .dark .ead-cl-tooltip { background-color: #1f2937; border-color: #374151; }
    .ead-cl-preview-wrap:hover .ead-cl-tooltip { opacity: 1; visibility: visible; }
    .ead-cl-tooltip-head { font-size: 0.7rem; font-weight: 700; color: #f97316; text-transform: uppercase; padding: 0.375rem; border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; gap: 0.5rem; }
    .dark .ead-cl-tooltip-head { border-bottom-color: #374151; }
    .ead-cl-tooltip-body { max-height: 10rem; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #f97316 transparent; }
    
    .ead-lp-empty { font-size: 0.7rem; color: #6b7280; font-weight: 700; padding: 0.75rem; text-align: center; }
    .ead-lp-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem; border-bottom: 1px solid #f3f4f6; width: 100%; transition: background-color 0.2s; border-radius: 0.25rem; }
    .ead-lp-item:last-child { border-bottom: 0; }
    .dark .ead-lp-item { border-bottom-color: #374151; }
    .ead-lp-item:hover { background-color: #fff7ed; }
    .dark .ead-lp-item:hover { background-color: #374151; }
    .ead-lp-avatar-wrap { flex-shrink: 0; }
    .ead-lp-avatar { width: 1.5rem; height: 1.5rem; border-radius: 50%; object-fit: cover; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid #e5e7eb; }
    .ead-lp-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
    .ead-lp-name { font-size: 0.7rem; font-weight: 700; color: #1f2937; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s; text-decoration: none; }
    .dark .ead-lp-name { color: #f3f4f6; }
    .ead-lp-name:hover { color: #f97316; }
    .ead-lp-date { font-size: 0.6rem; color: #6b7280; }
    .ead-lp-emoji { font-size: 0.875rem; text-shadow: 0 1px 2px rgba(0,0,0,0.05); }

    /* Preview ao Responder */
    .ead-reply-preview-box { display: flex; justify-content: space-between; align-items: center; background-color: rgba(255,247,237, 0.8); border-left: 2px solid #f97316; padding: 0.375rem 0.5rem; margin-bottom: 0.375rem; border-radius: 0.25rem; font-size: 0.7rem; color: #4b5563; width: 100%; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
    .dark .ead-reply-preview-box { background-color: rgba(124,45,18,0.2); color: #d1d5db; }
    .ead-reply-preview-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: 0.5rem; font-weight: 500; }
    .ead-reply-preview-close { color: #f87171; background: none; border: none; cursor: pointer; margin-left: 0.25rem; outline: none; }
    .ead-reply-preview-close:hover { color: #dc2626; }

    /* Botões na Mídia do Post (Feed) */
    .ead-post-priv-badge { position: absolute; top: 0.5rem; right: 0.5rem; background-color: #ffffff; color: #374151; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; z-index: 20; pointer-events: none; }
    @media (min-width: 768px) { .ead-post-priv-badge { top: 0.75rem; right: 0.75rem; width: 34px; height: 34px; } }
    .ead-post-priv-icon { font-size: 0.75rem; }
    @media (min-width: 768px) { .ead-post-priv-icon { font-size: 0.9rem; } }

    .ead-post-actions-wrap { display: flex; gap: 0.25rem; align-items: flex-start; justify-content: flex-end; margin-left: auto; height: 15px; margin-top: -40px; margin-bottom: 0.5rem; flex-shrink: 0; min-width: fit-content; position: relative; z-index: 10; padding-right: 0.5rem; }
    @media (min-width: 768px) { .ead-post-actions-wrap { gap: 0.375rem; height: 5px; margin-top: -60px; margin-bottom: 0.625rem; padding-right: 1rem; } }
    @media (min-width: 1024px) { .ead-post-actions-wrap { padding-right: 1.25rem; } }
    @media (min-width: 1280px) { .ead-post-actions-wrap { margin-top: -65px; } }
    
    .ead-post-action-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 32px; transition: all 0.2s; border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid #7c2d12; border-top: 0; background: linear-gradient(to bottom, #ea580c, #b91c1c, #000000); color: #ffffff; cursor: pointer; outline: none; margin: 0; padding: 0; }
    @media (min-width: 768px) { .ead-post-action-btn { width: 30px; height: 35px; border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; } }
    .ead-post-action-btn:hover { opacity: 0.9; }
    .ead-post-action-icon { font-size: 0.7rem; }
    @media (min-width: 768px) { .ead-post-action-icon { font-size: 0.8rem; } }
