/* ============================================================
   WORLDVIEW STYLES / 世界观交替式排版
============================================================ */

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    margin-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-main);
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 5px;
}

/* ================= 交替式列表 ================= */
.world-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* 每个世界观之间留出巨大的呼吸空间 */
    padding-bottom: 80px;
}

.world-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* 🌟 核心魔法：偶数行自动左右反转 */
.world-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* ================= Banner 图像区 ================= */
.w-banner-wrapper {
    flex: 1.2;
    /* 图像占据稍微大一点的比例 */
    width: 100%;
    aspect-ratio: 16 / 9;
    /* 电影感宽幅比例 */
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.w-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    /* 微微的灰度，增加档案感 */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

.world-row:hover .w-banner {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* ================= 文本信息区 ================= */
.w-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.w-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--theme-gold);
    padding-bottom: 5px;
    letter-spacing: 2px;
}

.w-title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.w-en {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--theme-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.w-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 2;
    text-align: justify;
    margin-bottom: 40px;
}

.w-desc p {
    margin-bottom: 15px;
}

/* 极简进入按钮 */
.w-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.w-btn:hover {
    background: var(--text-main);
    color: var(--bg-main);
    padding-left: 40px;
    /* 悬浮时按钮文字微微右移，增加动感 */
    padding-right: 20px;
}

/* ================= 响应式降维 ================= */
@media (max-width: 900px) {
    .world-list {
        gap: 80px;
    }

    /* 在手机和平板上，取消左右交替，全部强制变为上下结构 (上图下文) */
    .world-row,
    .world-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }

    .w-info {
        align-items: center;
        text-align: center;
    }

    .w-desc {
        text-align: center;
    }
}

/* ================= 联络卡片样式 ================= */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}

.contact-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link-card:hover {
    border-color: var(--theme-gold);
    transform: translateX(5px);
    /* 悬浮时微微向右浮动，增加指引感 */
}

.contact-type {
    font-size: 12px;
    color: var(--theme-gold);
    letter-spacing: 1px;
}

.contact-value {
    font-size: 13px;
    color: var(--text-main);
    font-family: var(--font-mono);
    transition: color 0.3s;
}

.contact-link-card:hover .contact-value {
    color: var(--theme-gold);
}

/* 复制成功时的状态 */
.contact-link-card.copied {
    border-color: var(--theme-green);
    background: rgba(130, 179, 155, 0.05);
}

.contact-link-card.copied .contact-type,
.contact-link-card.copied .contact-value {
    color: var(--theme-green);
}