﻿/* ============================================================
   样式目录
   01 重置与基础   02 通用工具     03 按钮        04 导航/移动菜单
   05 Hero        06 卡片         07 工具面板    08 推荐券商区块
   09 券商子页面   10 CMC 详情页   11 Pepperstone 12 普通子页面
   13 Toast       14 页脚         15 响应式      16 页面切换
   17 内容组件     18 滚动显现与背景动效   19 方向转盘
   20 推荐徽章与出入金方式   21 全站动效   22 出入金风险流程
   ============================================================ */
/* ===== 01 重置与基础 ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --gold: #D4AF37;
    --gold-light: #f5d76e;
    --gold-dark: #b8922a;
    --bg: #2e2818;
    --bg-card: #3a3325;
    --bg-card-hover: #463e2c;
    --border: #605542;
    --text: #fdfaf4;
    --text-muted: #cdc3b2;
    --text-dim: #ab9e88;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
::selection {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
}
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== 02 通用工具 ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 64px 0;
}
.section.pt-0 {
    padding-top: 0;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 36px;
}
.gold {
    color: var(--gold);
}
.text-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-card);
}
.tag-gold {
    border-color: var(--gold);
    color: var(--gold);
}
.section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 32px;
}
.skip-link {
    position: fixed;
    top: -48px;
    left: 16px;
    z-index: 400;
    padding: 10px 18px;
    background: var(--gold);
    color: #0b0a09;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ===== 03 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #8b6914 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 240, 180, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 240, 180, 0.3), 0 2px 6px rgba(0, 0, 0, 0.35), 0 4px 14px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 240, 180, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 240, 180, 0.4), 0 4px 10px rgba(0, 0, 0, 0.4), 0 8px 22px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover::before {
    left: 130%;
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
}

/* ===== 04 导航 ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(46, 40, 24, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}
.navbar.scrolled {
    border-bottom-color: rgba(212, 175, 55, 0.15);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.nav-brand span {
    color: var(--gold);
}
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    width: max-content;
}
.nav-links a {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--bg-card);
}
.nav-links a.active {
    color: var(--gold);
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
}
.nav-toggle svg {
    display: block;
}
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 8px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5d76e 0%, #D4AF37 55%, #b08d22 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #1a140f;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.discord-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
}
.discord-btn img {
    display: block;
    width: 18px;
    height: 18px;
}
@media (max-width: 1020px) {
    .discord-btn {
        margin-right: 12px;
        padding: 8px 10px;
    }
    .discord-btn .discord-text {
        display: none;
    }
}

/* ===== 移动菜单 ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg);
    border-left: 1px solid var(--border);
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu .close-btn {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}
.mobile-menu .close-btn svg {
    display: block;
}
.mobile-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.15s;
    text-align: center;
}
.mobile-menu a:hover {
    background: var(--bg-card);
    color: var(--text);
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* ===== 05 Hero ===== */
.hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.06), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.03), transparent 50%), var(--bg);
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 16px 0 28px;
}
.hero-intro {
    max-width: 700px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stats div {
    display: flex;
    flex-direction: column;
}
.hero-stats .num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stats .label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===== 06 卡片 ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 28px 24px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.card.zoomed,
.card.zoomed:hover {
    transform: scale(1.03);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.12);
    z-index: 5;
}
.card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.card .tags span {
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    border: 1px solid var(--border);
}
.card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    transition: gap 0.2s;
}
.card .link-arrow:hover {
    gap: 12px;
}

/* ===== 07 工具面板 ===== */
.tools-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 28px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tools-panel .tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 720px;
}
.tools-panel .tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    gap: 8px;
    width: 100%;
    min-width: 0;
    position: relative;
    overflow: hidden;
}
.tools-panel .tool-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.tools-panel .tool-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}
.tools-panel .tool-item:hover::after {
    left: 130%;
}
.tools-panel .tool-item:active {
    transform: translateY(0);
}
.tools-panel .tool-item .app-icon svg,
.tools-panel .tool-item .app-icon img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}
.tools-panel .tool-item .app-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* ===== 08 推荐券商区块 ===== */
.broker-panel {
    margin-top: 20px;
    background: radial-gradient(ellipse at 100% 0%, rgba(80, 120, 200, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 55%), var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.2, .7, .2, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.broker-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(74, 144, 255, 0.35) 0%, rgba(212, 175, 55, 0.35) 50%, rgba(74, 144,
                255, 0.35) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    animation: broker-glow-move 6s linear infinite;
    pointer-events: none;
}
@keyframes broker-glow-move {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(40deg);
    }
}
.broker-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -65%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 245, 210, 0.12) 45%, rgba(255, 245, 210, 0.28) 50%,
            rgba(255, 245, 210, 0.12) 55%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    transition: none;
}
.broker-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 144, 255, 0.45);
    box-shadow: 0 10px 28px rgba(74, 144, 255, 0.15), 0 6px 18px rgba(212, 175, 55, 0.12), 0 0 0 1px rgba(212, 175,
            55, 0.2);
}
.broker-panel:hover::before {
    opacity: 1;
}
.broker-panel:hover::after {
    animation: broker-shine 0.75s ease-out forwards;
}
@keyframes broker-shine {
    0% {
        left: -65%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}
.broker-panel .bp-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 320px;
    min-width: 280px;
    position: relative;
    z-index: 2;
}
.broker-panel .bp-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.broker-panel:hover .bp-icon {
    transform: translateY(-4px) rotate(-3deg) scale(1.06);
    border-color: rgba(74, 144, 255, 0.6);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32), 0 0 0 2px rgba(74, 144, 255, 0.2), 0 0 24px rgba(74, 144, 255,
            0.22);
}
.broker-panel .bp-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.broker-panel .bp-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.broker-panel .bp-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.broker-panel .bp-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}
.broker-panel:hover .bp-name {
    color: #fff;
    transform: translateX(2px);
    text-shadow: 0 0 18px rgba(74, 144, 255, 0.4);
}
.broker-panel .bp-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #4a90ff;
    background: rgba(74, 144, 255, 0.1);
    border: 1px solid rgba(74, 144, 255, 0.25);
    border-radius: 999px;
    transition: all 0.3s ease;
    animation: badge-bounce 2.8s ease-in-out infinite;
}
@keyframes badge-bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.04);
    }
}
.broker-panel:hover .bp-badge {
    background: rgba(74, 144, 255, 0.22);
    border-color: rgba(74, 144, 255, 0.6);
    box-shadow: 0 4px 14px rgba(74, 144, 255, 0.25);
    animation: none;
}
.broker-panel .bp-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    transition: color 0.25s ease;
}
.broker-panel:hover .bp-desc {
    color: #e5d9c0;
}
.broker-panel .bp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}
.broker-panel .bp-tags span {
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.25s ease;
    transform: translateY(0);
}
.broker-panel:hover .bp-tags span {
    border-color: rgba(212, 175, 55, 0.35);
    color: #f0d68a;
    background: rgba(212, 175, 55, 0.06);
}
.broker-panel:hover .bp-tags span:nth-child(1) {
    transform: translateY(-2px);
    transition-delay: 0.03s;
}
.broker-panel:hover .bp-tags span:nth-child(2) {
    transform: translateY(-2px);
    transition-delay: 0.06s;
}
.broker-panel:hover .bp-tags span:nth-child(3) {
    transform: translateY(-2px);
    transition-delay: 0.09s;
}
.broker-panel:hover .bp-tags span:nth-child(4) {
    transform: translateY(-2px);
    transition-delay: 0.12s;
}
.broker-panel:hover .bp-tags span:nth-child(5) {
    transform: translateY(-2px);
    transition-delay: 0.15s;
}
.broker-panel .bp-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #f5d76e 0%, #D4AF37 55%, #b08d22 100%);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 245, 200, 0.4), 0 4px 12px rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(.2, .7, .2, 1);
    color: #1a140f;
    position: relative;
    overflow: hidden;
}
.bp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-18deg);
    opacity: 0;
}
.bp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 245, 200, 0.5), 0 10px 24px rgba(212, 175, 55, 0.36), 0 0 0 1px rgba(255,
                245, 200, 0.2);
    border-color: rgba(255, 230, 150, 0.75);
}
.bp-btn:hover::before {
    animation: btn-shine 0.6s ease-out forwards;
    opacity: 1;
}
.bp-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(212, 175, 55, 0.25);
}
@keyframes btn-shine {
    0% {
        left: -60%;
    }
    100% {
        left: 120%;
    }
}

.brokers-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 20px;
}
.brokers-wrap .broker-panel {
    margin-top: 0;
}
.brokers-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 14px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: static;
    overflow: visible;
    transition: none;
}
.brokers-header::after {
    display: none;
}
.brokers-header:hover {
    border-color: transparent;
    transform: none;
}
.brokers-header:hover::after {
    display: none;
}
.brokers-header .bh-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0 4px 14px;
    margin-left: 6px;
}
.brokers-header .bh-title::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    border-radius: 6px;
    background: linear-gradient(180deg, #f5d76e 0%, #d4af37 60%, #8b6914 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.22);
}

@media (max-width: 900px) {
    .brokers-wrap {
        grid-template-columns: 1fr;
    }
    .brokers-header .bh-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .brokers-header {
        padding-bottom: 10px;
    }
    .brokers-header .bh-title {
        width: 100%;
        font-size: 1.35rem;
    }
    .brokers-header .bh-title::before {
        left: -12px;
        height: 68%;
    }
}
@media (max-width: 480px) {
    .brokers-header .bh-title {
        font-size: 1.2rem;
    }
}

/* ===== 09 券商子页面专属样式 ===== */
.broker-notice-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    margin: 20px 0 24px;
    background: linear-gradient(180deg, rgba(255, 190, 130, 0.07), transparent 70%), var(--bg-card);
    border: 1px solid rgba(255, 140, 80, 0.28);
    border-left: 3px solid #e57a50;
    border-radius: 12px;
}
.bnb-ic {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 180, 120, 0.28), rgba(255, 120, 80, 0.1));
    border: 1px solid rgba(255, 140, 80, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.bnb-body {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.bnb-body b {
    color: #f5a468;
    font-weight: 600;
}

/* ===== 10 CMC 详情页专属 ===== */
.block-title {
    position: relative;
    padding-left: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 38px 0 14px;
}
.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.05em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}
.block-title:first-of-type {
    margin-top: 24px;
}
.cmc-hero {
    padding: 24px 0 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.cmc-hero-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 400px;
}
.cmc-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.cmc-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cmc-hero-title {
    text-align: center;
}
.cmc-hero-title h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.cmc-hero-title .sub {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.cmc-hero-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.cmc-hero-badge .badge-item {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
}
.cmc-hero-badge .badge-item.blue {
    background: rgba(74, 144, 255, 0.08);
    border-color: rgba(74, 144, 255, 0.2);
    color: #6a9cff;
}
.cmc-score {
    text-align: center;
    padding: 14px 22px;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.18), transparent 70%), var(--bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    flex-shrink: 0;
}
.cmc-score .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.cmc-score .stars {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.cmc-score .caption {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.cmc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0 24px;
}
.cmc-grid-2 .item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px 22px;
    transition: all 0.25s ease;
}
.cmc-grid-2 .item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.cmc-grid-2 .item .label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.cmc-grid-2 .item .value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}
.cmc-grid-2 .item .desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.6;
}

.cmc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 16px 0 24px;
}
.cmc-features .feat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 18px 20px;
    text-align: center;
    transition: all 0.25s ease;
}
.cmc-features .feat:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}
.cmc-features .feat .icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.cmc-features .feat .fname {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
}
.cmc-features .feat .fdesc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cmc-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin: 16px 0 24px;
}
.cmc-steps .step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 18px 16px;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
}
.cmc-steps .step:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}
.cmc-steps .step .no {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--gold);
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
}
.cmc-steps .step .sname {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}
.cmc-steps .step .sdesc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.5;
}
.cmc-steps .step .arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.2rem;
    opacity: 0.3;
}
.cmc-steps .step:last-child .arrow {
    display: none;
}

@media (max-width: 860px) {
    .cmc-grid-2 {
        grid-template-columns: 1fr;
    }
    .cmc-steps {
        grid-template-columns: 1fr 1fr;
    }
    .cmc-steps .step .arrow {
        display: none;
    }
}
@media (max-width: 560px) {
    .cmc-hero {
        flex-direction: column;
        align-items: stretch;
    }
    .cmc-hero-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cmc-score {
        align-self: center;
    }
    .cmc-steps {
        grid-template-columns: 1fr;
    }
    .cmc-features {
        grid-template-columns: 1fr 1fr;
    }
}

.cmc-cta-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 20px 0 8px;
    border-top: 1px solid var(--border);
}
.cmc-cta-wrap .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a140f;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #f5d76e 0%, #D4AF37 55%, #b08d22 100%);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 245, 200, 0.5), 0 8px 24px rgba(212, 175, 55, 0.25);
    transition: all 0.3s cubic-bezier(.2, .7, .2, 1);
    position: relative;
    overflow: hidden;
}
.cmc-cta-wrap .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-18deg);
    opacity: 0;
}
.cmc-cta-wrap .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255, 245, 200, 0.6), 0 14px 34px rgba(212, 175, 55, 0.38), 0 0 0 1px rgba(255,
                245, 200, 0.25);
    border-color: rgba(255, 230, 150, 0.85);
}
.cmc-cta-wrap .btn-cta:hover::before {
    animation: btn-shine 0.65s ease-out forwards;
    opacity: 1;
}
.cmc-cta-wrap .btn-cta:active {
    transform: translateY(-1px) scale(0.99);
}
.cmc-cta-wrap .btn-cta-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}
.cmc-cta-wrap .btn-cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cmc-cta-wrap .btn-cta-secondary::before {
    display: none;
}

/* ===== 11 Pepperstone 专属样式 ===== */
/* 已与 CMC 详情页统一为金色主题，仅保留页面级差异（HTML 中的 pep-* 钩子留作布局微调） */

/* ===== 12 普通子页面 ===== */
.sub-page {
    padding-top: 88px;
    padding-bottom: 60px;
    min-height: 60vh;
}
.sub-page .page-header .tag {
    margin-bottom: 8px;
}
.sub-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.sub-page .back-link:hover {
    color: var(--gold);
}
.sub-page .page-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.sub-page .page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
}
.sub-page .page-header p {
    color: var(--text-muted);
    margin-top: 4px;
}
.sub-page .content-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 28px 24px;
    margin-bottom: 20px;
}
.sub-page .content-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.sub-page .content-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}
.sub-page .content-block ul {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    padding-left: 20px;
    margin-top: 6px;
}
.sub-page .content-block ul li::marker {
    color: var(--gold);
}


/* 全站美化：首页卡片图标徽章 */
.grid-3 .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    margin-bottom: 14px;
}
.grid-3 .card:hover .icon {
    transform: scale(1.12);
    background: rgba(212, 175, 55, 0.14);
}
/* 子页头金色装饰线 */
.sub-page .page-header {
    position: relative;
    padding-bottom: 18px;
}
.sub-page .page-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-light), transparent);
}/* ===== 13 Toast ===== */
.toast {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ===== 14 页脚 ===== */
.site-footer {
    padding: 40px 0 60px;
    margin-top: 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.site-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.site-footer .footer-brand .logo {
    display: flex;
    align-items: center;
}
.site-footer .footer-brand .logo svg {
    display: block;
    width: 30px;
    height: 30px;
}
.site-footer .footer-brand-name {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.site-footer .footer-brand-name span {
    color: var(--gold);
}
.site-footer .footer-brand-sub {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.6;
    margin-top: 2px;
}
.site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    flex: 1;
}
.site-footer .footer-nav a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.site-footer .footer-nav a:hover {
    color: var(--text);
}
.site-footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.site-footer .footer-contact > a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.site-footer .footer-contact > a:hover {
    color: var(--text);
}
.site-footer .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.68rem;
    color: var(--text-dim);
}
.site-footer .footer-legal a {
    color: var(--text-dim);
    transition: color 0.2s;
}
.site-footer .footer-legal a:hover {
    color: var(--text-muted);
}
.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
}
.site-footer .footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
}
.site-footer .footer-slogan {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    letter-spacing: 0.08em;
    color: var(--gold);
    opacity: 0.4;
}

/* ===== 15 响应式 ===== */
@media (max-width: 1020px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}
@media (max-width: 900px) {
    .tools-panel {
        grid-template-columns: 1fr;
    }
    .tools-panel .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .site-footer .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-footer .footer-contact {
        align-items: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 40px 0;
    }
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    .tools-panel {
        padding: 20px 16px;
    }
    .tools-panel .tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .card {
        padding: 20px 16px;
    }
    .sub-page {
        padding-top: 76px;
    }
}

/* ===== 16 页面切换 ===== */
.page {
    display: none;
    animation: fadeUp 0.4s ease forwards;
}
.page.active {
    display: block;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}
.mt-8 {
    margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    /* 兜底：即使 JS 已标记显现元素，也保证内容不被隐藏 */
    .reveal-ready .reveal {
        opacity: 1 !important;
    }
}

/* ===== 券商详情页卡片样式 (brokers 页面) ===== */
.broker-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.broker-detail:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.bd-head {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.bd-rank {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4px 12px;
    border-radius: 10px;
    flex-shrink: 0;
}
.bd-icon-lg {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bd-icon-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bd-head-body {
    flex: 1;
    min-width: 200px;
}
.bd-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bd-name-row h2 {
    font-size: 1.3rem;
    font-weight: 700;
}
.bd-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid;
    letter-spacing: 0.04em;
}
.bd-badge-gold {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}
.bd-badge-blue {
    color: #4d8cff;
    border-color: rgba(77, 140, 255, 0.25);
    background: rgba(77, 140, 255, 0.08);
}
.bd-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}
.bd-meta .dot {
    color: var(--text-dim);
    padding: 0 4px;
}
.bd-score {
    text-align: center;
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    flex-shrink: 0;
}
.bd-score-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.bd-score-num.blue {
    color: #508bff;
}
.bd-stars {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.bd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin: 16px 0;
}
.bd-cell {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}
.bd-cell:hover {
    border-color: rgba(212, 175, 55, 0.2);
}
.bd-cell-k {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.bd-cell-v {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.bd-cell-v.highlight-blue {
    color: #4d8cff;
}
.bd-cell p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
}
.bd-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.bd-pros {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.bd-pros li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.bd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a140f;
    background: linear-gradient(135deg, #f5d76e 0%, #D4AF37 55%, #b08d22 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}
.bd-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
}
/* 桌面端按钮始终贴右：优势列表换行时也不跑偏；移动端列布局由下方媒体查询接管 */
@media (min-width: 561px) {
    .bd-bottom > .bd-btn {
        margin-left: auto;
    }
}

@media (max-width: 860px) {
    .bd-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .bd-grid {
        grid-template-columns: 1fr;
    }
    .bd-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .bd-score {
        align-self: flex-start;
    }
    .bd-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .bd-btn {
        justify-content: center;
    }
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}
.how-to-item {
    display: flex;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.2s ease;
}
.how-to-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}
.hti-no {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    height: fit-content;
    flex-shrink: 0;
}
.hti-body h3 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.hti-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 600px) {
    .how-to-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 17 内容组件(计算器/术语表/数据表/章节导航) ===== */
.grid-3 + .grid-3 {
    margin-top: 20px;
}
.inline-link {
    color: var(--gold);
    font-weight: 600;
}
.table-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.calc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 24px;
    margin-bottom: 20px;
    transition: border-color 0.25s ease;
}
.calc-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}
.calc-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.calc-head .calc-icon {
    font-size: 1.6rem;
    line-height: 1.2;
}
.calc-head h3 {
    font-size: 1.05rem;
    font-weight: 600;
}
.calc-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.calc-field > span {
    font-size: 0.76rem;
    color: var(--text-muted);
}
.calc-field input,
.calc-field select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.calc-field input:focus,
.calc-field select:focus {
    outline: none;
    border-color: var(--gold);
}
.calc-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.result-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.result-item .rk {
    font-size: 0.72rem;
    color: var(--text-dim);
}
.result-item .rv {
    font-weight: 700;
    font-size: 1.05rem;
}
.result-item .rv.pos {
    color: #4ade80;
}
.result-item .rv.neg {
    color: #f87171;
}
.calc-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 14px;
}

.glossary-search {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    padding: 11px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    margin-top: 12px;
    transition: border-color 0.2s;
}
.glossary-search:focus {
    outline: none;
    border-color: var(--gold);
}
.glossary-count {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 8px;
}
.glossary-list {
    margin-top: 6px;
}
.glossary-item {
    padding: 12px 0;
    border-top: 1px dashed var(--border);
}
.glossary-item:first-child {
    border-top: none;
}
.glossary-item dt {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}
.glossary-item dd {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 2px;
}
.glossary-empty {
    color: var(--text-dim);
    font-size: 0.88rem;
    padding: 16px 0;
}

.faq-item {
    padding: 12px 0;
    border-top: 1px dashed var(--border);
}
.faq-item:first-of-type {
    border-top: none;
    padding-top: 4px;
}
.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.faq-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.site-footer .footer-risk {
    font-size: 0.68rem;
    color: var(--text-dim);
    line-height: 1.7;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

/* ===== 18 滚动显现动效（JS 添加 .reveal-ready 后才启用；无 JS / 减少动态效果时内容始终可见） ===== */
/* 背景动效：金色粒子上浮（Canvas 固定层）+ 环境光晕缓慢漂移 */
#bg-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
body::before {
    content: '';
    position: fixed;
    inset: -12%;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 28%, rgba(212, 175, 55, 0.11), transparent 40%),
        radial-gradient(circle at 78% 72%, rgba(212, 175, 55, 0.085), transparent 42%);
    animation: ambientDrift 38s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
    from { transform: translate3d(-2%, -1.5%, 0) scale(1); }
    to { transform: translate3d(2%, 2%, 0) scale(1.07); }
}
/* 流光：两道倾斜柔光带缓慢扫过背景 */
body::after {
    content: '';
    position: fixed;
    inset: -14%;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 40%, rgba(255, 236, 170, 0.055) 50%, transparent 60%),
        linear-gradient(115deg, transparent 66%, rgba(212, 175, 55, 0.045) 73%, transparent 80%);
    animation: lightFlow 24s ease-in-out infinite alternate;
}
@keyframes lightFlow {
    from { transform: translate3d(-6%, -4%, 0); }
    to { transform: translate3d(6%, 4%, 0); }
}
/* ===== 21 全站动效（行情条 / 数字计数 / 悬浮微动效） ===== */
.ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(46, 40, 24, 0.97);
    border-top: 1px solid var(--border);
}
.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 38s linear infinite;
}
.ticker:hover .ticker-track {
    animation-play-state: paused;
}
.tk {
    margin-right: 36px;
    font-size: 0.74rem;
    color: var(--text-muted);
}
.tk b {
    color: var(--text);
    font-weight: 700;
    margin-right: 6px;
}
.tk em {
    font-style: normal;
    font-weight: 700;
}
.tk em.up { color: #4ade80; }
.tk em.dn { color: #f87171; }
.tk-tag {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1px 9px;
    font-size: 0.66rem;
    color: var(--text-dim);
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.card .icon,
.cmc-features .feat .icon {
    transition: transform 0.25s ease;
}
.card:hover .icon {
    transform: scale(1.12);
}
.cmc-features .feat:hover .icon {
    transform: scale(1.12);
}
.tag-gold {
    animation: tagGlow 3.2s ease-in-out infinite;
}
@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 14px rgba(212, 175, 55, 0.35); }
}
/* 鼠标跟随光晕 */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.09), transparent 65%);
    pointer-events: none;
    z-index: 3;
}
@media (hover: none) {
    .cursor-glow { display: none; }
}
/* 卡片光泽扫过 */
.card {
    position: relative;
    overflow: hidden;
}
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 230, 160, 0.09), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}
.card:hover::after {
    left: 130%;
}
/* 按钮点击涟漪 */
.btn,
.bd-btn {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 244, 214, 0.4);
    transform: scale(0);
    animation: rippleGo 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleGo {
    to { transform: scale(1); opacity: 0; }
}

/* Hero 点缀：漂浮星光 + 柔光斑 */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hd-s {
    position: absolute;
    color: var(--gold-light);
    text-shadow: 0 0 14px rgba(245, 215, 110, 0.85);
    animation: sparkleFloat 6s ease-in-out infinite;
}
.hd-1 { top: 16%; left: 66%; font-size: 1.5rem; }
.hd-2 { top: 60%; left: 84%; font-size: 1rem; opacity: 0.8; animation-delay: 1.8s; }
.hd-3 { top: 28%; left: 90%; font-size: 0.8rem; opacity: 0.6; animation-delay: 3.4s; }
.hd-blob {
    position: absolute;
    right: -70px;
    top: 30px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 65%);
    filter: blur(12px);
    animation: blobPulse 9s ease-in-out infinite;
}
@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
    50% { transform: translateY(-16px) scale(1.25); opacity: 0.45; }
}
@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.12); opacity: 0.65; }
}
/* 点击迸发的金色粒子 */
.click-spark {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff3cf, #f5d76e 55%, #c9992a);
    box-shadow: 0 0 8px rgba(245, 215, 110, 0.8);
    pointer-events: none;
    z-index: 9999;
}
/* Hero 向下探索指示器 */
.hd-scroll {
    position: absolute;
    bottom: 46px;
    left: 50%;
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: translateX(-50%) rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.85;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) rotate(45deg) translate(0, 0); opacity: 0.85; }
    50% { transform: translateX(-50%) rotate(45deg) translate(7px, 7px); opacity: 0.35; }
}

/* Doge 吉祥物：趴在页脚窗台，点击切换跳舞（低存在感，贴合站点配色） */
.doge-mascot {
    position: absolute;
    right: 26px;
    bottom: 100%;
    width: 66px;
    height: 42px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
}
.doge-mascot .doge-body {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 66px;
    height: 54px;
    overflow: hidden;
    transition: transform 0.25s ease, filter 0.25s ease, height 0.25s ease;
    transform-origin: bottom center;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 97%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 97%);
    filter: saturate(0.8) brightness(0.95);
}
.doge-mascot .doge-body img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 16%;
    animation: dogeBreath 3.4s ease-in-out infinite;
}
@keyframes dogeBreath {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.04); }
}
.doge-mascot:hover .doge-body {
    transform: translateY(-3px);
    filter: saturate(1) brightness(1.02);
}
.doge-mascot.dancing .doge-body {
    height: 56px;
    bottom: -4px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    -webkit-mask-image: none;
    mask-image: none;
    filter: none;
    animation: dogeDance 0.62s ease-in-out infinite;
}
@keyframes dogeDance {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-8px); }
}
.doge-note {
    position: absolute;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
}
.doge-note.n1 { right: -10px; top: -4px; }
.doge-note.n2 { right: -20px; top: 8px; }
.doge-mascot.dancing .doge-note {
    animation: noteFloat 0.9s ease-out infinite;
}
.doge-mascot.dancing .doge-note.n2 {
    animation-delay: 0.45s;
}
@keyframes noteFloat {
    from { transform: translateY(4px); opacity: 1; }
    to { transform: translateY(-22px); opacity: 0; }
}
.doge-speak {
    position: absolute;
    bottom: calc(100% + 8px);
    right: -6px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 3;
}
.doge-speak.on {
    opacity: 1;
    transform: translateY(0);
}/* Doge 彩蛋雨 */
.doge-rain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}
.doge-rain span {
    position: absolute;
    top: -48px;
    animation: dogeFall linear forwards;
}
@keyframes dogeFall {
    to { transform: translateY(calc(100vh + 80px)) rotate(360deg); opacity: 0.25; }
}
/* Hero 快捷导航胶囊 + 导航分组标签 */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}
.chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
/* ===== 22 出入金风险流程图 ===== */
.risk-flow {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 4px;
}
.rf-step {
    flex: 1 1 130px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.rf-step .rf-ic {
    font-size: 1.7rem;
    line-height: 1.2;
}
.rf-step .rf-name {
    font-weight: 700;
    font-size: 0.88rem;
}
.rf-step .rf-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.rf-step.bad {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.05);
}
.rf-step.bad .rf-name {
    color: #f87171;
}
.rf-step.good {
    border-color: rgba(74, 222, 128, 0.35);
    background: rgba(74, 222, 128, 0.05);
}
.rf-step.good .rf-name {
    color: #4ade80;
}
.rf-arrow {
    align-self: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.rr-item {
    display: flex;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 16px 18px;
    margin-top: 12px;
}
.rr-no {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 4px 8px;
    height: fit-content;
    flex-shrink: 0;
}
.rr-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.rr-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 700px) {
    .risk-flow {
        flex-direction: column;
    }
    .rf-arrow {
        transform: rotate(90deg);
    }
    .rf-step {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
}
.reveal-ready .reveal {
    opacity: 0;
}
.reveal-ready .reveal.in-view {
    animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--reveal-delay, 0ms);
}
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 19 方向转盘 ===== */
.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.wheel-stage {
    position: relative;
    width: min(274px, 82vw);
    margin: 24px auto 4px;
}
.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--gold);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.55));
}
.wheel-stage.spinning .wheel-pointer {
    transform-origin: 50% 0;
    animation: pointerWiggle 0.3s ease-in-out infinite alternate;
}
@keyframes pointerWiggle {
    from { transform: translateX(-50%) rotate(-7deg); }
    to { transform: translateX(-50%) rotate(7deg); }
}
.wheel {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 244, 214, 0.05) 0 32%, transparent 33%),
        conic-gradient(
            #f3d97c 0deg 60deg, #d9b23f 60deg 120deg,
            #322b21 120deg 180deg, #211c15 180deg 240deg,
            #57503f 240deg 300deg, #3a342a 300deg 360deg
        );
    border: 9px solid #6f5613;
    box-shadow:
        inset 0 0 0 3px rgba(255, 244, 214, 0.3),
        inset 0 0 0 6px rgba(0, 0, 0, 0.35),
        inset 0 -16px 34px rgba(0, 0, 0, 0.35),
        0 18px 44px rgba(0, 0, 0, 0.5);
    transition: transform 4.2s cubic-bezier(0.12, 0.55, 0.08, 1);
    cursor: pointer;
}
.wheel.spinning {
    cursor: wait;
}
.wheel-line {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.wheel-line::before {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(rgba(255, 244, 214, 0.45), rgba(0, 0, 0, 0.45));
}
.wheel-label {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.wheel-label i {
    font-style: normal;
    margin-top: 30px;
    writing-mode: vertical-rl;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.wheel-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.wheel-lights span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 35% 30%, #fff3cf, #ffd76a 60%, #c9992a);
    box-shadow: 0 0 7px rgba(255, 233, 168, 0.85);
}
.wheel.spinning .wheel-lights span {
    animation: lightBlink 0.5s linear infinite;
}
.wheel.spinning .wheel-lights span:nth-child(odd) {
    animation-delay: 0.25s;
}
@keyframes lightBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255, 233, 168, 0.9); }
    50% { opacity: 0.35; box-shadow: 0 0 2px rgba(255, 233, 168, 0.3); }
}
.wheel-gloss {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 44%),
        radial-gradient(circle at 50% 125%, rgba(0, 0, 0, 0.38), transparent 56%);
}
.wheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(74, 56, 8, 0.28) 0 26%, transparent 28%),
        radial-gradient(circle at 35% 30%, #ffe9a8, #d4af37 55%, #8a6d1c);
    border: 3px solid rgba(255, 244, 214, 0.5);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.35);
}
.wheel-hub::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px dotted rgba(74, 56, 8, 0.55);
}
.wheel-result {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    min-height: 1.8em;
}
.wheel-result.show-long {
    color: #4ade80;
}
.wheel-result.show-short {
    color: #f87171;
}
.wheel-result.show-pause {
    color: var(--gold);
}
.wheel-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.wheel-tally {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 4px 14px;
    white-space: nowrap;
}
.wheel-model {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-top: 12px;
}

/* ===== 20 推荐徽章与出入金方式 ===== */
.bd-rec-badge {
    flex-shrink: 0;
    height: fit-content;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.12);
}
.cmc-rec-badge {
    flex-shrink: 0;
    text-align: center;
    padding: 16px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.05));
}
.cmc-rec-badge .medal {
    font-size: 1.9rem;
    line-height: 1;
}
.cmc-rec-badge .txt {
    margin-top: 4px;
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.cmc-rec-badge .sub {
    margin-top: 2px;
    font-size: 0.68rem;
    color: var(--text-muted);
}
.pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
/* 两个券商详情页的公共区块尺寸保持一致 */
.cmc-hero .cmc-score,
.cmc-rec-badge {
    min-height: 114px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cmc-features .feat {
    min-height: 174px;
}
.pay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 10px 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.pay-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}
.pay-item img {
    height: 24px;
    width: auto;
}
.pay-item .pay-emoji {
    height: 24px;
    display: flex;
    align-items: center;
    font-size: 1.45rem;
    line-height: 1;
}
.pay-item .pay-wordmark {
    height: 24px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.01em;
}
.pay-neteller {
    color: #8DC63F;
}
.pay-skrill {
    color: #A052CC;
}
.pay-item > span:last-child {
    font-size: 0.76rem;
    color: var(--text-muted);
}
.pay-item .pay-note {
    font-size: 0.66rem;
    color: var(--text-dim);
    margin-top: -5px;
}
.pay-item .pay-duo {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pay-item .pay-duo img {
    height: 20px;
}


/* ===== 24 生动微动效 ===== */
/* 行情数值跳动脉冲 */
.tk em {
    display: inline-block;
}
.tk em.tick {
    animation: tickPop 0.45s ease;
}
@keyframes tickPop {
    0% { transform: scale(1.35) translateY(-1px); filter: brightness(1.7); }
    100% { transform: scale(1) translateY(0); filter: brightness(1); }
}
/* 内联链接下划线生长 */
a.inline-link {
    background: linear-gradient(var(--gold), var(--gold)) no-repeat left bottom / 0 2px;
    padding-bottom: 2px;
    transition: background-size 0.3s ease;
}
a.inline-link:hover {
    background-size: 100% 2px;
}
/* 区块标题金条悬停生长 */
.block-title::before {
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.block-title:hover::before {
    width: 10px;
}
/* 内容块悬停微亮 */
.sub-page .content-block {
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.sub-page .content-block:hover {
    border-color: rgba(212, 175, 55, 0.28);
    transform: translateY(-2px);
}
/* FAQ 悬停微亮 */
.faq-item {
    border-radius: 10px;
    transition: background 0.2s ease;
}
.faq-item:hover {
    background: rgba(212, 175, 55, 0.045);
}
/* Hero 胶囊级联入场 */
.hero-chips .chip {
    animation: chipIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-chips .chip:nth-child(1) { animation-delay: 0.18s; }
.hero-chips .chip:nth-child(2) { animation-delay: 0.26s; }
.hero-chips .chip:nth-child(3) { animation-delay: 0.34s; }
.hero-chips .chip:nth-child(4) { animation-delay: 0.42s; }
.hero-chips .chip:nth-child(5) { animation-delay: 0.5s; }
.hero-chips .chip:nth-child(6) { animation-delay: 0.58s; }
@keyframes chipIn {
    from { opacity: 0; transform: translateY(12px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
/* 转盘轴心装饰环慢转 */
.doge-mascot .doge-body,
.wheel-hub::after {
    will-change: auto;
}
.wheel-hub::after {
    animation: hubSpin 16s linear infinite;
}
@keyframes hubSpin {
    to { transform: rotate(360deg); }
}/* ===== 23 全站视觉精修 ===== */
/* 导航：底部金色光线 */
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4) 30%, rgba(212, 175, 55, 0.4) 70%, transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.navbar.scrolled::after {
    opacity: 1;
}
/* Hero 大标题金色辉光 */
.hero h1 {
    text-shadow: 0 2px 30px rgba(212, 175, 55, 0.22);
}
/* 输入框：聚焦金色光环 */
.calc-field input:focus,
.calc-field select:focus,
.glossary-search:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}
/* 大按钮 / CTA / 券商按钮：悬停扫光 */
.btn-cta,
.bd-btn,
.btn-secondary {
    position: relative;
    overflow: hidden;
}
.btn-cta::after,
.bd-btn::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 244, 214, 0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.btn-cta:hover::after,
.bd-btn:hover::after,
.btn-secondary:hover::after {
    left: 135%;
}
/* 返回链接：悬停箭头滑动 */
.sub-page .back-link {
    transition: transform 0.2s ease, color 0.2s ease;
}
.sub-page .back-link:hover {
    transform: translateX(4px);
}
/* Toast：玻璃质感 */
.toast {

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.12);
}
/* 页脚：顶部金色高光线 + 渐变分隔 */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03), transparent 120px), var(--bg);
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}
/* 区块标题：字距微调 */
.block-title,
.section-title {
    letter-spacing: -0.01em;
}
/* 标签 / 胶囊：玻璃质感统一 */
/* 毛玻璃已移除以提升性能 */
/* 列表标记统一金色脉动点 */
.sub-page .content-block ul li::marker,
.rr-body p {
    transition: none;
}