/* 重口 - 原创动漫社区与影视传媒样式 */
:root {
    --primary-color: #e91e63; /* 动漫二次元常用的粉红色调 */
    --primary-hover: #c2185b;
    --secondary-color: #3f51b5;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f5f7fa;
    --border-color: #eaeaea;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary-color); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--primary-color); color: #fff; border: 2px solid var(--primary-color); }
.btn-primary:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: #fff; }
.btn-sm { padding: 6px 16px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* 头部样式 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo img { height: 40px; }
.nav-list { display: flex; gap: 30px; }
.nav-list a { font-size: 16px; font-weight: 500; }
.nav-list a:hover { color: var(--primary-color); }

/* 搜索框 */
.search-bar-container { background: var(--bg-light); padding: 15px 0; display: none; }
.fake-search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.fake-search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}
.fake-search-box button {
    padding: 0 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* 首页 Hero 区 */
.gxyq1zu {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.l58rkvol {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.l58rkvol img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.5);
}
.hero-title { font-size: 48px; margin-bottom: 10px; font-weight: bold; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 24px; margin-bottom: 20px; font-weight: 400; }
.hero-desc { font-size: 16px; margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.n18ydzw { display: flex; gap: 15px; justify-content: center; }

/* 通用区块 */
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.vehk78e { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 32px; color: var(--text-color); margin-bottom: 15px; }
.ia6ydlt { font-size: 16px; color: var(--text-light); }

/* 动漫卡片网格 */
.5uo6e6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.anime-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.anime-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.anime-thumb {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    cursor: pointer;
}
.anime-thumb img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.anime-thumb:hover img { transform: scale(1.05); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.play-btn::after {
    content: '';
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 5px;
}
.anime-thumb.playing .play-btn { opacity: 1; }
.anime-duration {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.anime-info { padding: 20px; }
.anime-title { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.anime-meta { display: flex; gap: 15px; font-size: 13px; color: var(--text-light); margin-bottom: 10px; align-items: center; }
.tag { background: var(--bg-light); color: var(--primary-color); padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.anime-desc { font-size: 14px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* 特性区 */
.ecal0 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: #fff; padding: 30px 20px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); }
.feature-card .icon { font-size: 40px; margin-bottom: 15px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* 专家团队 */
.3vaiik5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.expert-card { text-align: center; padding: 30px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.expert-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; border: 3px solid var(--primary-color); }
.expert-name { font-size: 20px; margin-bottom: 5px; }
.expert-role { color: var(--primary-color); font-size: 14px; margin-bottom: 15px; font-weight: 500; }
.expert-desc { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.expert-actions { display: flex; justify-content: center; gap: 10px; }

/* 用户评论 */
.phbpm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.review-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
.stars { color: #ffc107; font-size: 20px; margin-bottom: 15px; }
.review-text { font-size: 16px; font-style: italic; margin-bottom: 15px; color: #444; }
.review-author { font-size: 14px; color: var(--text-light); font-weight: 500; text-align: right; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
.faq-question { font-size: 18px; color: var(--text-color); margin-bottom: 10px; cursor: pointer; position: relative; padding-right: 30px; }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--primary-color); font-size: 20px; }
.faq-answer { font-size: 15px; color: var(--text-light); display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question::after { content: '-'; }

/* 底部 */
.footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; }
.iuxfpv { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.footer-logo { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: var(--primary-color); }
.social-shares { margin-top: 20px; }
.share-icon { display: inline-block; margin-right: 10px; font-size: 14px; color: #fff; background: #333; padding: 4px 10px; border-radius: 4px; }
.qr-item { text-align: center; margin-bottom: 20px; }
.qr-item img { width: 100px; height: 100px; margin: 0 auto 10px; background: #fff; padding: 5px; border-radius: 4px; }
.eccjk8 { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }

/* 响应式 */
@media (max-width: 992px) {
    .ecal0, .3vaiik5 { grid-template-columns: repeat(2, 1fr); }
    .phbpm { grid-template-columns: 1fr; }
    .iuxfpv { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-list { display: none; } /* 移动端隐藏导航，实际项目中需写汉堡菜单 */
    .5uo6e6 { grid-template-columns: 1fr; }
    .ecal0, .3vaiik5, .iuxfpv { grid-template-columns: 1fr; }
    .hero-title { font-size: 32px; }
}

/* 其他内页样式简写 */
.page-header { background: var(--bg-light); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 36px; margin-bottom: 10px; }
.category-filter { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 20px; background: var(--bg-light); color: var(--text-color); }
.filter-btn.active, .filter-btn:hover { background: var(--primary-color); color: #fff; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.page-num, .page-current, .page-next { padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 4px; }
.page-current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* 社区与工具 */
.pvupfz4 .comm-feature { display: flex; align-items: center; gap: 40px; margin-bottom: 60px; }
.comm-feature.reverse { flex-direction: row-reverse; }
.comm-img { flex: 1; border-radius: 12px; box-shadow: var(--shadow); }
.comm-text { flex: 1; }
.comm-text h2 { font-size: 28px; margin-bottom: 20px; }
.comm-text p { font-size: 16px; color: var(--text-light); margin-bottom: 20px; }
.15jmy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.topic-card { background: #fff; padding: 20px; border-radius: 8px; border: 1px solid var(--border-color); }
.topic-tag { color: var(--primary-color); font-weight: bold; margin-bottom: 10px; display: block; }

/* 伪MCP弹窗样式 */
.mcp-widget { position: fixed; bottom: 20px; right: 20px; width: 300px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1000; display: none; }
.mcp-header { background: var(--primary-color); color: #fff; padding: 15px; border-radius: 12px 12px 0 0; font-weight: bold; }
.mcp-body { padding: 20px; height: 200px; overflow-y: auto; background: #f9f9f9; }
.mcp-input { display: flex; padding: 10px; border-top: 1px solid var(--border-color); }
.mcp-input input { flex: 1; padding: 8px; border: 1px solid var(--border-color); border-radius: 4px 0 0 4px; outline: none; }
.mcp-input button { padding: 8px 15px; background: var(--primary-color); color: #fff; border: none; border-radius: 0 4px 4px 0; cursor: pointer; }
