/* 乌贼聚合直播盒子 · 卡密自动发货站 */
/* 浅色暖调主题，与主站完全独立 */

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
    color: #262a31;
    background: #f7f5f1;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== 顶栏 ===== */
.topbar { background: #ffffff; border-bottom: 1px solid #ece7de; }
.topbar-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.logo img { width: 34px; height: 34px; border-radius: 9px; }
.menu { display: flex; gap: 22px; margin-left: auto; }
.menu a { color: #5a5f68; font-size: 15px; }
.menu a:hover { color: #ff5a3c; }
.topbar-btn {
    background: #ff5a3c;
    color: #fff;
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}
.topbar-btn:hover { background: #e84a2d; }

/* ===== 主视觉 ===== */
.hero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 20px 50px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; }
.hero h1 span { color: #ff5a3c; }
.hero-sub { margin-top: 16px; color: #5a5f68; font-size: 17px; }
.hero-btns { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(255, 90, 60, 0.15);
}

/* ===== 按钮 ===== */
.btn { padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 16px; }
.btn-primary { background: #ff5a3c; color: #fff; }
.btn-primary:hover { background: #e84a2d; }
.btn-ghost { border: 1px solid #d8d2c8; color: #262a31; }
.btn-ghost:hover { border-color: #ff5a3c; color: #ff5a3c; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ===== 卖点条 ===== */
.selling {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.selling-item {
    background: #fff;
    border: 1px solid #ece7de;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
}
.selling-item b { display: block; font-size: 17px; color: #262a31; }
.selling-item span { color: #8a8f98; font-size: 13px; }

/* ===== 通用区块 ===== */
.intro, .feature, .buy, .faq {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 20px;
}
.intro h2, .feature h2, .buy h2, .faq h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}
.intro p { color: #4b5058; margin-top: 12px; font-size: 16px; }

/* ===== 功能列表 ===== */
.feature-list { list-style: none; }
.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #ece7de;
    border-radius: 12px;
}
.feature-name { font-weight: 700; color: #262a31; white-space: nowrap; }
.feature-desc { color: #8a8f98; text-align: right; }

/* ===== 购买 ===== */
.buy {
    text-align: center;
    background: #fff;
    border: 1px solid #ece7de;
    border-radius: 18px;
    margin-top: 30px;
}
.buy p { color: #5a5f68; margin-bottom: 22px; }

/* ===== FAQ ===== */
.faq-entry {
    background: #fff;
    border: 1px solid #ece7de;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
}
.faq-entry h3 { font-size: 16px; margin-bottom: 8px; }
.faq-entry p { color: #5a5f68; font-size: 15px; }

/* ===== 页脚 ===== */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: #9a9fa8;
    font-size: 13px;
    border-top: 1px solid #ece7de;
}

/* ===== 响应式 ===== */
@media (max-width: 760px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .selling { grid-template-columns: repeat(2, 1fr); }
    .feature-row { flex-direction: column; gap: 6px; }
    .feature-desc { text-align: left; }
    .menu { order: 3; width: 100%; justify-content: center; margin-left: 0; }
}
