/* ============================================================
   contact.html 专用样式 · 开服公告 / 服务器特色 页面
   沿用全站暗色主题 · 金色强调色
   ============================================================ */

/* ---------- 金色强调色 ---------- */
.ct-gold {
    color: #ffd700 !important;
    font-weight: 600;
}

/* ---------- 区块间距 ---------- */
.ct-block {
    margin-top: 50px;
}

.ct-block:first-child {
    margin-top: 20px;
}

/* ---------- 区块标题 ---------- */
.ct-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
}

.ct-section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

/* ---------- 内容汇总框 ---------- */
.ct-summary-box {
    background: linear-gradient(180deg, #1a1a2e 0%, #151525 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.ct-summary-box > h3 {
    text-align: center;
    color: #ffd700;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ---------- 信息卡片 ---------- */
.ct-info-card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(124, 136, 255, 0.25);
    border-radius: 8px;
    padding: 18px 22px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.ct-info-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ct-info-card h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.ct-info-card p {
    color: #d8d8e8;
    font-size: 14.5px;
    line-height: 1.85;
    margin: 5px 0;
}

.ct-info-card-wide {
    width: 100%;
}

/* ---------- 大型提示框 ---------- */
.ct-big-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 140, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 18px 24px;
    color: #e8e8f0;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.ct-big-note strong {
    color: #ffd700;
    font-weight: 700;
}

/* ---------- 普通提示框 ---------- */
.ct-tip {
    background: rgba(100, 100, 180, 0.12);
    border: 1px solid rgba(124, 136, 255, 0.3);
    border-left: 4px solid #7c88ff;
    border-radius: 8px;
    padding: 16px 22px;
    color: #d8d8e8;
    font-size: 14.5px;
    line-height: 1.85;
}

.ct-tip strong {
    color: #a5b4ff;
    font-weight: 700;
}

/* ---------- 步骤卡片（特色玩法） ---------- */
.ct-step-card {
    display: flex;
    align-items: flex-start;
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(124, 136, 255, 0.2);
    border-radius: 10px;
    padding: 20px 25px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.ct-step-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(40, 40, 60, 0.7);
    transform: translateX(4px);
}

.ct-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.ct-step-content {
    flex: 1;
    color: #d8d8e8;
}

.ct-step-content h4 {
    color: #ffd700;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ct-step-content p {
    font-size: 14.5px;
    line-height: 1.85;
    color: #d8d8e8;
    margin: 6px 0;
}

/* ---------- 列表 ---------- */
.ct-list {
    margin: 0;
    padding-left: 20px;
}

.ct-list li {
    color: #d8d8e8;
    font-size: 14.5px;
    line-height: 1.9;
    margin: 5px 0;
    list-style: none;
    position: relative;
    padding-left: 15px;
}

.ct-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* ---------- 职业优化卡片网格 ---------- */
.ct-set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.ct-set-card {
    background: linear-gradient(180deg, rgba(45, 45, 70, 0.7) 0%, rgba(30, 30, 50, 0.6) 100%);
    border: 1px solid rgba(124, 136, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ct-set-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.ct-set-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(124, 136, 255, 0.12) 100%);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ct-set-icon {
    font-size: 28px;
}

.ct-set-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    flex: 1;
    min-width: 120px;
}

.ct-set-type {
    color: #ffd700;
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

.ct-set-body {
    padding: 18px 20px;
}

/* ---------- 流程图 ---------- */
.ct-flow-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ct-flow-row {
    width: 100%;
    max-width: 680px;
}

.ct-flow-step {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(40, 40, 65, 0.8) 0%, rgba(25, 25, 45, 0.9) 100%);
    border: 1px solid rgba(124, 136, 255, 0.25);
    border-radius: 12px;
    padding: 18px 24px;
    transition: all 0.3s ease;
}

.ct-flow-step:hover {
    transform: scale(1.02);
    border-color: rgba(124, 136, 255, 0.5);
}

.ct-flow-step-important {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 140, 0, 0.12) 100%);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.ct-flow-step-final {
    background: linear-gradient(135deg, rgba(124, 136, 255, 0.15) 0%, rgba(100, 100, 180, 0.12) 100%);
    border-color: rgba(124, 136, 255, 0.4);
    box-shadow: 0 4px 20px rgba(124, 136, 255, 0.12);
}

.ct-flow-idx {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(124, 136, 255, 0.2);
    color: #a5b4ff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.ct-flow-step-important .ct-flow-idx {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

.ct-flow-idx-fin {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

.ct-flow-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.ct-flow-text {
    flex: 1;
}

.ct-flow-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ct-flow-step-important .ct-flow-title {
    color: #ffd700;
}

.ct-flow-desc {
    color: #bfbfd4;
    font-size: 13.5px;
    line-height: 1.7;
}

.ct-flow-arrow {
    color: #ffd700;
    font-size: 18px;
    opacity: 0.6;
    margin: 5px 0;
    font-weight: bold;
}

/* ---------- 阵营规则对比框 ---------- */
.ct-party-comp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.ct-party-role {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(124, 136, 255, 0.25);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ct-party-role:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

.ct-role-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.ct-role-name {
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ct-role-desc {
    color: #d8d8e8;
    font-size: 14px;
    line-height: 1.85;
}

.ct-role-desc strong {
    color: #ffffff;
    font-weight: 700;
}

/* ---------- 福利/装备介绍卡片 ---------- */
.ct-dungeon-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.ct-dungeon-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(124, 136, 255, 0.25);
    border-radius: 10px;
    padding: 20px 22px;
    transition: all 0.3s ease;
}

.ct-dungeon-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.ct-dungeon-icon {
    font-size: 32px;
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-dungeon-info {
    flex: 1;
}

.ct-dungeon-info h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ct-dungeon-desc {
    color: #d8d8e8;
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
}

.ct-dungeon-desc strong {
    color: #ffffff;
    font-weight: 700;
}

/* ---------- 底部 ---------- */
footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d18 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    padding: 40px 20px 30px;
    text-align: center;
    margin-top: 20px;
}

footer p {
    color: #bfbfd4;
    font-size: 14px;
    line-height: 1.9;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

footer a {
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
    .ct-section-title {
        font-size: 22px;
    }

    .ct-section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .ct-summary-box {
        padding: 20px 15px;
    }

    .ct-step-card {
        padding: 15px;
        flex-wrap: wrap;
    }

    .ct-step-num {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-right: 12px;
    }

    .ct-flow-step {
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .ct-flow-idx,
    .ct-flow-idx-fin {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .ct-flow-icon {
        font-size: 22px;
    }

    .ct-set-grid,
    .ct-party-comp,
    .ct-dungeon-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ct-block {
        margin-top: 35px;
    }

    .ct-info-card,
    .ct-dungeon-card {
        padding: 14px;
    }
}
