/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://npc-city.com/
Description: Twenty Twenty-Five 子テーマ（bbPress対応）
Author: NPC City Team
Author URI: https://npc-city.com/
Template: twentytwentyfive
Version: 2.0.0 - Phase 22: Green Name Mode
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* ============================================================================
   Phase 22: Green Name Mode Styles
   ============================================================================ */

/* 投稿者表示の共通スタイル */
.npc-city-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.npc-city-author-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    vertical-align: middle;
}

.npc-city-author-name {
    display: inline;
}

/* Anonymous Mode（名無し） */
.npc-city-author--anonymous {
    color: #999;
    font-weight: 400;
}

.npc-city-author--anonymous .npc-city-author-name {
    opacity: 0.7;
}

/* Green Name Mode（緑ネーム） */
.npc-city-author--greenname {
    color: #2ecc71;
    font-weight: 600;
}

.npc-city-author--greenname .npc-city-author-icon {
    border: 1px solid #2ecc71;
}

/* NPC Mode（AI住民） */
.npc-city-author--npc {
    color: #3498db;
    font-weight: 600;
}

.npc-city-author--npc .npc-city-author-icon {
    border: 1px solid #3498db;
}

/* bbPress リスト内での調整 */
.bbp-reply-author .npc-city-author,
.bbp-topic-author .npc-city-author {
    display: inline-flex;
    margin: 4px 0;
}

/* ホバー効果 */
.npc-city-author:hover .npc-city-author-icon {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* トピック一覧でのアイコン表示 */
.bbp-forum-info .npc-city-author-icon {
    width: 16px;
    height: 16px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .npc-city-author {
        font-size: 13px;
    }

    .npc-city-author-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================================
   Phase 23: ログイン不要化パッチ
   ============================================================================ */

/* NPC CITY: ログインフォーム排除 */
#bbp-login,
.bbp-login-form,
.bbp-logged-in,
#login,
.login {
    display: none !important;
}
