body {
    background: linear-gradient(180deg, #030717 0%, #101829 45%, #030717 100%);
    color: #e3e8ef;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    z-index: 9999;
    padding: .75rem 1.25rem;
    background: #14b57f;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}

/* ===== Hero ===== */
.nfeaye_hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 5rem;
    background:
        radial-gradient(1200px 400px at 10% 10%, rgba(16, 185, 129, 0.28), transparent 60%),
        radial-gradient(1000px 360px at 90% 20%, rgba(14, 165, 233, 0.24), transparent 60%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 26px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 26px),
        linear-gradient(180deg, #030717 0%, #081225 55%, #030717 100%);
}

.hero_inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .85rem;
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: #71e4b6;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.hero_eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #14b57f;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    animation: liveBlink 1.4s ease-in-out infinite;
}

.hero_eyebrow strong {
    color: #a7f3d0;
}

.nfeaye_hero h1 {
    margin: 1.1rem 0 1rem;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -.01em;
}

.hero_title_gradient {
    display: block;
    background: linear-gradient(90deg, #39ce97 0%, #3cbdf4 45%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_lead {
    color: #cdd5df;
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 1.8rem;
    max-width: 580px;
}

.hero_lead strong {
    color: #71e4b6;
    font-weight: 700;
}

.hero_cta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .95rem 1.45rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: all .25s ease;
}

.btn_primary {
    background: linear-gradient(135deg, #14b57f 0%, #089367 100%);
    color: #022c22;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.28);
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.42);
}

.btn_ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #e3e8ef;
    border-color: rgba(148, 163, 184, 0.3);
}

.btn_ghost:hover {
    border-color: #3cbdf4;
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.08);
}

.btn i {
    font-size: 1rem;
}

.hero_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.4rem;
    max-width: 620px;
}

.hero_stat {
    padding: 1rem 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.hero_stat_num {
    font-size: 1.6rem;
    font-weight: 850;
    background: linear-gradient(90deg, #39ce97, #3cbdf4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_stat_label {
    margin-top: .2rem;
    color: #98a4b4;
    font-size: .82rem;
}

.hero_card_wrap {
    position: relative;
}

.hero_card {
    position: relative;
    padding: 1.7rem 1.7rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(16, 185, 129, 0.18) 0%, rgba(14, 165, 233, 0.12) 55%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(52, 211, 153, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero_card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -20px;
    width: 220px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(16, 185, 129, 0.35), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero_card_title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.hero_card_title .tag_live {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .6rem;
    background: linear-gradient(135deg, #eb4848, #f09a10);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    border-radius: 6px;
    letter-spacing: .06em;
}

.hero_card_title .tag_live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: liveBlink 1.1s ease-in-out infinite;
}

.hero_card_title_mini {
    color: #98a4b4;
    font-size: .8rem;
}

.hero_matches {
    display: grid;
    gap: .8rem;
}

.hero_match_row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: .75rem;
    align-items: center;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    transition: all .25s ease;
}

.hero_match_row:hover {
    border-color: rgba(52, 211, 153, 0.45);
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-1px);
}

.hero_team {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.hero_team.right {
    justify-content: flex-end;
    text-align: right;
}

.hero_flag {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06) inset;
}

.hero_team_name {
    font-weight: 700;
    color: #e3e8ef;
    font-size: .95rem;
}

.hero_team_sub {
    color: #98a4b4;
    font-size: .75rem;
    margin-top: .1rem;
}

.hero_vs {
    text-align: center;
}

.hero_score {
    font-size: 1.4rem;
    font-weight: 850;
    color: #fff;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

.hero_score_detail {
    color: #71e4b6;
    font-size: .72rem;
    margin-top: .2rem;
    font-weight: 600;
}

@media (max-width: 1023px) {
    .nfeaye_hero {
        padding: 4rem 0 3.5rem;
    }

    .hero_inner {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .hero_stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .hero_stats {
        grid-template-columns: 1fr;
    }

    .hero_match_row {
        grid-template-columns: 1fr;
        gap: .4rem;
        text-align: center;
    }

    .hero_team {
        justify-content: center;
    }

    .hero_team.right {
        justify-content: center;
        text-align: center;
    }
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: .45;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

/* ===== Section 通用 ===== */
.section_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section_head h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -.01em;
}

.section_head h2 .deco {
    display: inline-block;
    width: 4px;
    height: 1em;
    margin-right: .6rem;
    background: linear-gradient(180deg, #14b57f, #13a5e4);
    border-radius: 4px;
    vertical-align: -.1em;
}

.section_head .desc {
    color: #98a4b4;
    font-size: .9rem;
    margin-top: .4rem;
}

.section_head .more {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #71e4b6;
    font-weight: 700;
    text-decoration: none;
    padding: .5rem .9rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.06);
    transition: all .25s ease;
}

.section_head .more:hover {
    background: rgba(16, 185, 129, 0.14);
    border-color: #39ce97;
    color: #a7f3d0;
    transform: translateX(2px);
}

.section_head .more i {
    font-size: .82rem;
    transition: transform .25s ease;
}

.section_head .more:hover i {
    transform: translateX(3px);
}

/* ===== 今日赛程 ===== */
.nfeaye_today {
    padding: 4.5rem 0 4rem;
    position: relative;
}

.nfeaye_today::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
}

.tab_filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.tab_btn {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: #cdd5df;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    font-size: .9rem;
}

.tab_btn:hover {
    border-color: rgba(52, 211, 153, 0.5);
    color: #71e4b6;
}

.tab_btn.on {
    background: linear-gradient(135deg, #14b57f, #089367);
    color: #022c22;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.today_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.today_card {
    padding: 1.25rem 1.3rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: all .25s ease;
}

.today_card:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 211, 153, 0.38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.today_card_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .9rem;
}

.league_tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: #a78bfa;
    padding: .28rem .6rem;
    border-radius: 8px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.25);
}

.league_tag.ft {
    color: #71e4b6;
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.league_tag.bk {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.22);
}

.league_tag.tn {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.22);
}

.live_badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: .25rem .55rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #eb4848, #f09a10);
    color: #fff;
}

.live_badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: liveBlink 1.15s ease-in-out infinite;
}

.time_row {
    color: #98a4b4;
    font-size: .78rem;
    margin-bottom: .45rem;
}

.time_row strong {
    color: #e3e8ef;
    font-weight: 700;
}

.team_row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: .6rem;
    align-items: center;
}

.team_cell {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.team_cell.right {
    justify-content: flex-end;
    text-align: right;
    flex-direction: row-reverse;
}

.team_flag {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    font-size: 1.05rem;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05) inset;
}

.team_name {
    color: #f1f5f9;
    font-weight: 700;
    font-size: .93rem;
}

.team_rank {
    color: #697586;
    font-size: .72rem;
    margin-top: .1rem;
}

.vs_center {
    text-align: center;
    min-width: 54px;
}

.vs_center .score {
    font-weight: 850;
    color: #fff;
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
}

.vs_center .sep {
    color: #697586;
    font-size: .7rem;
}

.today_card_foot {
    margin-top: 1rem;
    padding-top: .9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd_tag {
    color: #98a4b4;
    font-size: .78rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.hd_tag i {
    color: #71e4b6;
}

.watch_btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 700;
    padding: .42rem .8rem;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: #71e4b6;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-decoration: none;
    transition: all .25s ease;
}

.watch_btn:hover {
    background: rgba(16, 185, 129, 0.22);
    border-color: #39ce97;
    color: #a7f3d0;
    transform: translateX(1px);
}

.watch_btn.live {
    background: linear-gradient(135deg, #eb4848, #f09a10);
    color: #fff;
    border-color: transparent;
}

.watch_btn.live:hover {
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.35);
    transform: translateX(1px);
}

@media (max-width: 1023px) {
    .today_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .today_grid {
        grid-template-columns: 1fr;
    }

    .section_head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== 世界杯/大型赛事 展示 ===== */
.nfeaye_worldcup {
    padding: 4.5rem 0 4rem;
    position: relative;
}

.wc_deco_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .6;
    background:
        radial-gradient(700px 260px at 20% 50%, rgba(16, 185, 129, 0.12), transparent 60%),
        radial-gradient(700px 260px at 80% 50%, rgba(234, 179, 8, 0.10), transparent 60%);
}

.wc_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.wc_card {
    position: relative;
    overflow: hidden;
    padding: 1.4rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
    transition: all .28s ease;
}

.wc_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wc-bar, linear-gradient(90deg, #14b57f, #13a5e4));
}

.wc_card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.42);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.wc_tag {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .05em;
    color: var(--wc-tag, #71e4b6);
    padding: .25rem .55rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-block;
}

.wc_title {
    margin: .85rem 0 .25rem;
    font-weight: 800;
    color: #f8fafc;
    font-size: 1.12rem;
}

.wc_sub {
    color: #98a4b4;
    font-size: .82rem;
}

.wc_teams {
    display: flex;
    gap: .45rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

.wc_team_flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    font-size: .9rem;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.wc_more {
    color: #697586;
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    padding: .2rem .45rem;
}

.wc_foot {
    margin-top: 1.1rem;
    padding-top: .9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wc_count {
    color: #98a4b4;
    font-size: .8rem;
}

.wc_count strong {
    color: #f1f5f9;
    font-weight: 800;
}

.wc_enter {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--wc-tag, #71e4b6);
    text-decoration: none;
    transition: all .25s ease;
}

.wc_enter:hover {
    transform: translateX(2px);
}

@media (max-width: 1023px) {
    .wc_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .wc_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 热门项目（⭐️ 本次改造：真实图片 + 渐变遮罩） ===== */
.nfeaye_categories {
    padding: 4.5rem 0 4rem;
    position: relative;
}

.cat_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.cat_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    overflow: hidden;
    transition: all .28s ease;
}

.cat_card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.42);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.cat_img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #0b1220;
}

.cat_pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.cat_card:hover .cat_pic {
    transform: scale(1.08);
}

/* 渐变遮罩：让图片暗一点，保证 tag 和文字可读 */
.cat_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.55) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(2, 6, 23, 0.8) 100%);
    pointer-events: none;
}

.cat_tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .8rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
}

/* 3 张卡片主题色 tag（配色对应之前的渐变）*/
.zhonchao_tag {
    --cat-glow: rgba(231, 76, 60, 0.55);
    box-shadow: 0 8px 20px var(--cat-glow), 0 0 0 1px rgba(231, 76, 60, 0.35) inset;
}

.yingchao_tag {
    --cat-glow: rgba(52, 152, 219, 0.55);
    box-shadow: 0 8px 20px var(--cat-glow), 0 0 0 1px rgba(52, 152, 219, 0.35) inset;
}

.xijia_tag {
    --cat-glow: rgba(243, 156, 18, 0.55);
    box-shadow: 0 8px 20px var(--cat-glow), 0 0 0 1px rgba(243, 156, 18, 0.35) inset;
}

/* onerror 降级：图片加载失败时用原渐变做兜底背景，不会出现空白破图 */
.cat_fallback_zhonchao {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cat_fallback_yingchao {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.cat_fallback_xijia {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.cat_card h3 {
    padding: 1.2rem 1.35rem 0;
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: #f8fafc;
}

.cat_subtitle {
    padding: .35rem 1.35rem 0;
    color: #71e4b6;
    font-size: .82rem;
    font-weight: 600;
}

.cat_desc {
    padding: .65rem 1.35rem 1.35rem;
    margin: 0;
    color: #98a4b4;
    font-size: .9rem;
    line-height: 1.7;
}

@media (max-width: 1023px) {
    .cat_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .cat_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 新闻资讯（真实缩略图双渲染 + onerror 无图占位）===== */
.nfeaye_news {
    padding: 4.5rem 0 4rem;
    position: relative;
}

.navt_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.navt_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .28s ease;
}

.navt_card:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.42);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.navt_img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1220, #121926);
    background-size: cover;
    background-position: center;
}

.navt_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 无图时渐变占位 + 中间报纸 Font Awesome 图标（\f1ea = fa-newspaper） */
.navt_img.no_img {
    background: linear-gradient(135deg, #1e293b 0%, #101829 100%);
}

.navt_img.no_img::after {
    content: "\f1ea";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 163, 184, 0.4);
    font-size: 3rem;
}

.navt_img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.85) 100%);
    pointer-events: none;
}

.navt_tag {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 2;
    padding: .28rem .6rem;
    border-radius: 7px;
    font-size: .72rem;
    font-weight: 800;
    color: #022c22;
    background: linear-gradient(135deg, #39ce97, #13a5e4);
}

.navt_card_body {
    padding: 1.2rem 1.3rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.navt_card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 800;
}

.navt_card h3 a {
    color: #f8fafc;
    text-decoration: none;
    transition: color .25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navt_card h3 a:hover {
    color: #71e4b6;
}

.navt_summary {
    color: #98a4b4;
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navt_meta {
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #697586;
    font-size: .78rem;
}

.navt_meta .date {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.navt_meta .date i {
    color: #71e4b6;
}

.navt_meta .readmore {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #71e4b6;
    font-weight: 700;
    text-decoration: none;
}

.navt_meta .readmore:hover {
    color: #a7f3d0;
}

@media (max-width: 1023px) {
    .navt_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .navt_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 常见问题 FAQ（原生 details）===== */
.nfeaye_faq {
    padding: 4.5rem 0 4rem;
}

.wci_wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.wci_intro h2 {
    margin-bottom: .8rem;
}

.wci_intro .desc {
    color: #98a4b4;
    line-height: 1.75;
}

.wci_intro_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem;
    margin-top: 1.4rem;
}

.wci_feature {
    padding: .9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.wci_feature i {
    color: #39ce97;
    font-size: 1.1rem;
}

.wci_feature strong {
    display: block;
    color: #f8fafc;
    font-size: .92rem;
    margin-top: .5rem;
}

.wci_feature span {
    color: #98a4b4;
    font-size: .8rem;
}

.wci_list {
    display: grid;
    gap: .75rem;
}

details.wci_item {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    transition: border-color .25s ease;
    overflow: hidden;
}

details.wci_item[open] {
    border-color: rgba(52, 211, 153, 0.4);
}

details.wci_item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
    color: #e3e8ef;
    font-size: .98rem;
}

details.wci_item summary::-webkit-details-marker {
    display: none;
}

details.wci_item summary::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: #39ce97;
    transition: all .25s ease;
    flex-shrink: 0;
}

details.wci_item[open] summary::after {
    content: "\f068";
    background: linear-gradient(135deg, #14b57f, #089367);
    color: #022c22;
    transform: rotate(180deg);
}

details.wci_item>div {
    padding: 0 1.3rem 1.2rem;
    color: #98a4b4;
    line-height: 1.8;
    font-size: .9rem;
}

details.wci_item>div strong {
    color: #71e4b6;
}

@media (max-width: 1023px) {
    .wci_wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .wci_intro_features {
        grid-template-columns: 1fr;
    }
}

/* ===== 关于我们 ===== */
.nfeaye_about {
    padding: 4.5rem 0 4rem;
}

.about_grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about_text p {
    color: #cdd5df;
    line-height: 1.85;
    margin: 0 0 1.1rem;
    font-size: .96rem;
}

.about_text p strong {
    color: #71e4b6;
    font-weight: 700;
}

.about_text p a.brand_link {
    display: inline;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(90deg, #39ce97, #3cbdf4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px dashed rgba(52, 211, 153, 0.5);
    padding-bottom: 1px;
    transition: all .25s ease;
}

.about_text p a.brand_link:hover {
    border-bottom-color: #39ce97;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
    margin-top: 1.3rem;
}

.value_item {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    transition: all .25s ease;
}

.value_item:hover {
    transform: translateY(-1px);
    border-color: rgba(52, 211, 153, 0.45);
    background: rgba(16, 185, 129, 0.06);
}

.value_icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(14, 165, 233, 0.15));
    color: #71e4b6;
    font-size: 1.05rem;
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.value_item strong {
    display: block;
    color: #f8fafc;
    margin-top: .7rem;
    font-size: .95rem;
}

.value_item span {
    display: block;
    color: #98a4b4;
    font-size: .82rem;
    margin-top: .2rem;
    line-height: 1.6;
}

.about_badge {
    position: relative;
    padding: 1.6rem 1.6rem 1.4rem;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(16, 185, 129, 0.18), rgba(14, 165, 233, 0.10) 60%, rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(52, 211, 153, 0.3);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

.about_badge_num {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -.02em;
    background: linear-gradient(90deg, #39ce97, #3cbdf4, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.about_badge_label {
    color: #a7f3d0;
    font-weight: 700;
    margin: .2rem 0 .8rem;
}

.about_badge_sub {
    color: #98a4b4;
    font-size: .86rem;
    line-height: 1.7;
}

.about_badge_features {
    display: grid;
    gap: .55rem;
    margin-top: 1.1rem;
}

.about_badge_features li {
    list-style: none;
    color: #cdd5df;
    font-size: .86rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 0;
}

.about_badge_features li i {
    color: #39ce97;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .about_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .values_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 邮箱订阅 ===== */
.nfeaye_subscribe {
    padding: 4.5rem 0 4.5rem;
}

.subscribe_card {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 2.6rem;
    border-radius: 24px;
    background:
        radial-gradient(700px 260px at 0% 0%, rgba(16, 185, 129, 0.25), transparent 60%),
        radial-gradient(600px 220px at 100% 100%, rgba(14, 165, 233, 0.22), transparent 60%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(52, 211, 153, 0.32);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.subscribe_card h2 {
    margin: 0 0 .4rem;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    color: #f8fafc;
    font-weight: 850;
}

.subscribe_card .desc {
    color: #cdd5df;
    line-height: 1.75;
    font-size: .95rem;
}

.subscribe_form {
    position: relative;
}

.subscribe_form input[type=email] {
    width: 100%;
    padding: 1rem 1.15rem;
    padding-right: 8.5rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.5);
    color: #f8fafc;
    font-size: .95rem;
    outline: none;
    transition: all .25s ease;
}

.subscribe_form input[type=email]::placeholder {
    color: #697586;
}

.subscribe_form input[type=email]:focus {
    border-color: #39ce97;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
    background: rgba(2, 6, 23, 0.7);
}

.subscribe_form button {
    position: absolute;
    top: 50%;
    right: .55rem;
    transform: translateY(-50%);
    border: none;
    padding: .7rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #14b57f, #089367);
    color: #022c22;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: all .25s ease;
}

.subscribe_form button:hover {
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.35);
}

.subscribe_form_tip {
    display: block;
    color: #98a4b4;
    font-size: .78rem;
    margin-top: .7rem;
}

@media (max-width: 1023px) {
    .subscribe_card {
        grid-template-columns: 1fr;
        padding: 1.8rem 1.6rem;
    }
}

@media (max-width: 639px) {
    .subscribe_form input[type=email] {
        padding-right: 1rem;
        padding-bottom: 4.2rem;
    }

    .subscribe_form button {
        right: .55rem;
        top: auto;
        bottom: .55rem;
        transform: none;
        width: calc(100% - 1.1rem);
        justify-content: center;
    }

    .subscribe_form button:hover {
        transform: scale(1.02);
    }
}

/* ===== SEO 友好品牌内链介绍 ===== */
.seo_brand_intro {
    padding: 0 0 5rem;
}

.seo_intro_card {
    position: relative;
    padding: 1.8rem 1.9rem 1.7rem 1.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.seo_intro_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #14b57f 0%, #13a5e4 50%, #a78bfa 100%);
}

.seo_intro_card .text-content p {
    color: #cdd5df;
    line-height: 1.9;
    font-size: .95rem;
    margin: 0 0 .9rem;
}

.seo_intro_card .text-content p:last-child {
    margin-bottom: 0;
}

.seo_intro_card .text-content p a {
    display: inline;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 0 .1rem;
    border-radius: 4px;
    transition: all .25s ease;
    position: relative;
}

.seo_intro_card .text-content p a:hover {
    background: rgba(16, 185, 129, 0.10);
    color: #a7f3d0;
}

.seo_intro_card .text-content p a:hover::after {
    content: "\f0c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: .3rem;
    font-size: .78rem;
    color: #71e4b6;
}

.seo_intro_card .text-content p strong {
    color: inherit;
    font-weight: inherit;
    background: linear-gradient(90deg, #39ce97, #3cbdf4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* d76675 */
::selection {
    scroll-behavior: auto;
}
[data-cae] {
    tab-size: 4;
}
