/* ================= 剧社 MCN 主页专属样式 (v2026) ================= */

.pb-60 { padding-bottom: 60px; }

/* 通用白卡 */
.bg-white { background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

/* 区块标题（左侧品牌色竖条） */
.mcn-section { padding: 24px; margin-bottom: 24px; }
.mcn-section-hd {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.mcn-section-title {
    font-size: 18px; font-weight: bold; color: #333;
    border-left: 3px solid var(--primary); padding-left: 12px; line-height: 1.1;
}
.mcn-section-title .count { font-size: 14px; color: #999; font-weight: normal; margin-left: 6px; }
.mcn-more-link { font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 2px; }
.mcn-more-link:hover { color: var(--primary-hover); }
.mcn-empty { text-align: center; color: #999; padding: 40px 0; font-size: 14px; }

/* ================= 1. 顶部剧社名片 ================= */
.mcn-header {
    padding: 32px 40px; display: flex; align-items: center; gap: 28px; margin-bottom: 24px;
}
.mcn-avatar-box { flex-shrink: 0; }
.mcn-avatar {
    width: 110px; height: 110px; border-radius: 16px; object-fit: cover;
    border: 4px solid #f0fcfc; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: #f0f2f5;
}
.mcn-info { flex: 1; min-width: 0; }
.mcn-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.mcn-name { font-size: 26px; font-weight: 800; color: #333; margin: 0; }
.mcn-verify-tag {
    display: inline-flex; align-items: center; gap: 4px; padding: 3px 12px;
    background: #e6f7f7; color: #0f6e56; font-size: 12px; border-radius: 14px; font-weight: bold;
}
.mcn-verify-tag i { font-size: 14px; }

/* 剧社等级徽章（金色，与主播页 MCN 标签同一视觉语言） */
.mcn-level-tag {
    display: inline-flex; align-items: center; gap: 4px; padding: 3px 12px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff1b8 100%); border: 1px solid #ffe58f;
    color: #d48806; font-size: 12px; border-radius: 14px; font-weight: bold;
}
.mcn-level-tag i { font-size: 14px; }

.mcn-stats { display: flex; align-items: center; gap: 16px; color: #666; font-size: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.mcn-stats i { color: var(--primary); margin-right: 4px; font-size: 16px; vertical-align: -2px; }
.mcn-stats b { color: #333; margin: 0 2px; }
.mcn-stat-divider { width: 1px; height: 14px; background: #e0e0e0; }
.mcn-intro { color: #888; font-size: 14px; line-height: 1.6; max-width: 720px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.mcn-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; width: 140px; }
.mcn-btn { display: flex; align-items: center; justify-content: center; gap: 6px; height: 40px;
    border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; transition: all 0.2s; border: none; }
.mcn-btn-join { background: linear-gradient(135deg, #4DE3E0 0%, #13c2c2 100%); color: #fff; box-shadow: 0 4px 10px rgba(19, 194, 194, 0.2); }
.mcn-btn-join:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(19, 194, 194, 0.3); }
.mcn-btn-share { background: #fff; border: 1px solid #ddd; color: #666; }
.mcn-btn-share:hover { border-color: var(--primary); color: var(--primary); }

/* ================= 2. 管理团队 ================= */
.mcn-team { display: flex; align-items: flex-start; gap: 28px; flex-wrap: wrap; }
.mcn-team-divider { width: 1px; align-self: stretch; background: #eee; }
.mcn-person { width: 84px; text-align: center; flex-shrink: 0; }
.mcn-person-avatar-box { position: relative; display: inline-block; }
.mcn-person-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; background: #f0f2f5; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: 0.2s; }
.mcn-person:hover .mcn-person-avatar { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(19,194,194,0.2); }
.mcn-person.boss .mcn-person-avatar { width: 72px; height: 72px; border-color: var(--primary); }
.mcn-person-badge {
    position: absolute; top: -4px; right: -8px; background: var(--primary); color: #fff;
    font-size: 11px; padding: 1px 8px; border-radius: 10px; font-weight: bold; box-shadow: 0 2px 4px rgba(19,194,194,0.3);
}
.mcn-person-name { display: block; font-size: 14px; color: #333; margin-top: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mcn-person:hover .mcn-person-name { color: var(--primary); }
.mcn-person-role { display: block; font-size: 12px; color: #999; margin-top: 2px; }

/* ================= 3. 主播成员网格 ================= */
.mcn-member-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px 12px; }
.mcn-member { text-align: center; }
.mcn-member-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; background: #f0f2f5; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: 0.2s; }
.mcn-member:hover .mcn-member-avatar { transform: translateY(-3px); box-shadow: 0 6px 14px rgba(19,194,194,0.2); }
.mcn-member-name { display: block; font-size: 14px; color: #333; margin-top: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mcn-member:hover .mcn-member-name { color: var(--primary); }
.mcn-member-level {
    display: inline-block; margin-top: 4px; font-size: 11px; color: var(--primary-hover);
    background: #e6f7f7; padding: 1px 8px; border-radius: 10px;
}

/* ================= 4. 旗下专辑网格（方形封面） ================= */
.square-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px 16px; }
.square-card { width: 100%; transition: transform 0.3s; }
.square-card:hover { transform: translateY(-4px); }
.square-cover { display: block; width: 100%; aspect-ratio: 1 / 1; position: relative; border-radius: 8px; overflow: hidden; background: #f0f2f5; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.square-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 40px; opacity: 0; transition: opacity 0.3s; }
.square-card:hover .square-cover img { transform: scale(1.05); }
.square-card:hover .play-overlay { opacity: 1; }
.status-tag { position: absolute; top: 6px; right: 6px; font-size: 11px; padding: 2px 6px; border-radius: 4px; color: #fff; font-weight: bold; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.status-ing { background: #faad14; }
.status-end { background: var(--primary); }
.square-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; font-weight: bold; color: #333; line-height: 1.4; margin-bottom: 6px; transition: color 0.2s; }
.square-title:hover { color: var(--primary); }
.square-meta { font-size: 12px; color: #999; display: flex; align-items: center; gap: 4px; }
.square-meta i { font-size: 14px; }

/* ================= 更多页：上下文头部 ================= */
.mcn-context-header {
    background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding: 20px 24px; margin-bottom: 24px;
}
.mcn-btn-back { display: inline-flex; align-items: center; color: #666; font-size: 14px; margin-bottom: 16px; }
.mcn-btn-back:hover { color: var(--primary); }
.mcn-context-info { display: flex; align-items: center; gap: 16px; }
.mcn-context-avatar { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; background: #f0f2f5; }
.mcn-context-text h1 { font-size: 20px; font-weight: 800; color: #333; margin: 0 0 4px; }
.mcn-context-text p { font-size: 13px; color: #999; margin: 0; }

/* ================= 更多页：分页 ================= */
.pagination { text-align: center; padding: 30px 0 10px; }
.pagination a {
    display: inline-block; min-width: 34px; height: 34px; line-height: 34px; padding: 0 10px;
    margin: 0 4px; border-radius: 8px; background: #fff; color: #666; font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04); transition: 0.2s;
}
.pagination a:hover { color: var(--primary); box-shadow: 0 2px 8px rgba(19,194,194,0.15); }
.pagination a.sel { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(19,194,194,0.3); }
.pagination .clear { clear: both; }