/* ============================================================
   phishing.css — 网络钓鱼防范专题页专属样式
   与 style.css 全局变量完全兼容，不修改全局样式
   ============================================================ */

/* ===== HERO ===== */
.phishing-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
    padding-top: 72px;
}
#phishingCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.phishing-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(240,245,255,0.2) 50%, rgba(255,255,255,0.5) 100%);
    pointer-events: none;
}
.phishing-hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    text-align: center;
    padding: 48px 24px;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
    animation: fadeInDown 0.6s ease-out;
}
.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.phishing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 110, 255, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 110, 255, 0.15);
    animation: fadeInDown 0.8s ease-out;
}
.pulse-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.phishing-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}
.phishing-hero h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.phishing-hero-content > p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.phishing-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.phishing-hero-stats .stat-item {
    text-align: center;
}
.phishing-hero-stats .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: inline;
}
.phishing-hero-stats .stat-unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: inline;
    margin-left: 2px;
}
.phishing-hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== THREAT GRID ===== */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.threat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.threat-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.threat-card.threat-primary {
    grid-column: span 2;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-color: rgba(26, 110, 255, 0.15);
}
.threat-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.threat-icon svg {
    width: 22px; height: 22px;
    color: var(--primary);
}
.threat-data { margin-bottom: 12px; }
.threat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}
.threat-number span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 4px;
}
.threat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}
.thrend-trend {
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
}
.thrend-trend.up {
    background: #fef2f2;
    color: #dc2626;
}
.thrend-trend.down {
    background: #f0fdf4;
    color: #16a34a;
}
.threat-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.threat-source {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ===== FRAMEWORK ===== */
.framework-wrap {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 800px;
    margin: 0 auto;
}
.framework-layers {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fw-layer {
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    transition: var(--transition);
    position: relative;
}
.fw-layer:hover {
    border-color: rgba(26, 110, 255, 0.3);
    box-shadow: var(--shadow);
}
.fw-layer-1 { border-left: 4px solid var(--primary); }
.fw-layer-2 { border-left: 4px solid #0ea5e9; }
.fw-layer-3 { border-left: 4px solid #8b5cf6; }
.fw-layer-4 { border-left: 4px solid #f59e0b; }
.fw-layer-5 { border-left: 4px solid #10b981; }
.fw-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fw-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fw-items span {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 500;
}
.fw-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    position: relative;
}
.fw-connector::before {
    content: '';
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
}
.framework-hint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}
.framework-hint svg {
    width: 18px; height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SUBTOPIC GRID ===== */
.subtopic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.subtopic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.subtopic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.subtopic-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.subtopic-card:hover::before { transform: scaleX(1); }
.subtopic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.subtopic-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}
.subtopic-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}
.subtopic-status.active {
    background: #e6f7ed;
    color: #2ea043;
}
.subtopic-status.hot {
    background: #fef2f2;
    color: #dc2626;
    animation: pulse-bg 2s infinite;
}
@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.subtopic-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.subtopic-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.subtopic-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.subtopic-tag {
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 500;
}
.subtopic-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 28px; height: 28px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}
.subtopic-card:hover .subtopic-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== OUTPUT GRID ===== */
.output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.output-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.output-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.output-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.output-paper .output-badge {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4338ca;
}
.output-report .output-badge {
    background: #f0fdf4;
    color: #16a34a;
}
.output-standard .output-badge {
    background: #fff7ed;
    color: #ea580c;
}
.output-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.output-authors {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}
.output-meta {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.output-abs {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.output-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.output-link:hover { text-decoration: underline; }
.output-link.disabled {
    color: var(--text-light);
    cursor: default;
}
.output-link.disabled:hover { text-decoration: none; }

/* ===== TIMELINE ===== */
.timeline-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--border) 100%);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 18px; height: 18px;
    background: white;
    border: 3px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
}
.timeline-item.done .timeline-dot {
    border-color: var(--primary);
    background: var(--primary);
}
.timeline-item.active .timeline-dot {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(26, 110, 255, 0.08); }
}
.timeline-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.timeline-content:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow);
}
.timeline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.timeline-phase {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
}
.timeline-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.timeline-status.done {
    background: #e6f7ed;
    color: #2ea043;
}
.timeline-status.ongoing {
    background: #fff7ed;
    color: #f57c00;
}
.timeline-status.planned {
    background: #f0f0f5;
    color: var(--text-light);
}
.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-content > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.timeline-tags span {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 500;
}

/* ===== CTA ===== */
.phishing-cta {
    background: var(--primary-gradient);
    border-radius: var(--radius);
    padding: 60px 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.phishing-cta h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.phishing-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.cta-btn-primary {
    background: white;
    color: var(--primary);
}
.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .threat-grid { grid-template-columns: repeat(2, 1fr); }
    .threat-card.threat-primary { grid-column: span 2; }
    .subtopic-grid { grid-template-columns: repeat(2, 1fr); }
    .output-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .phishing-hero { min-height: 420px; padding-top: 96px; }
    .phishing-hero h1 { font-size: clamp(26px, 7vw, 36px); }
    .phishing-hero-stats { gap: 24px; margin-top: 28px; }
    .phishing-hero-stats .stat-number { font-size: 32px; }
    .threat-grid { grid-template-columns: 1fr; }
    .threat-card.threat-primary { grid-column: span 1; }
    .subtopic-grid { grid-template-columns: 1fr; }
    .output-grid { grid-template-columns: 1fr; }
    .phishing-cta { padding: 40px 24px; }
    .phishing-cta h3 { font-size: 22px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .framework-wrap { padding: 28px 20px; }
    .fw-items span { font-size: 11px; padding: 3px 8px; }
}

/* ===== SUBTOPIC PAGE COMMON ===== */
.subtopic-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
    padding-top: 72px;
}
.subtopic-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 48px 24px;
}
.subtopic-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 110, 255, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 110, 255, 0.15);
}
.subtopic-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.subtopic-hero h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subtopic-hero-content > p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 64px 0;
}
.content-section-alt {
    background: var(--bg-warm);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.content-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.content-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-block h3 .icon {
    width: 36px; height: 36px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.content-block h3 .icon svg {
    width: 18px; height: 18px;
    color: var(--primary);
}
.content-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.content-block ul {
    list-style: none;
    padding: 0;
}
.content-block ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===== CASE STUDY ===== */
.case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.case-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
}
.case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.case-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}
.case-tag.real {
    background: #fef2f2;
    color: #dc2626;
}
.case-tag.simulation {
    background: #f0fdf4;
    color: #16a34a;
}
.case-tag.research {
    background: #e0e7ff;
    color: #4338ca;
}
.case-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}
.case-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.case-source {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 500;
}

/* ===== TECH TABLE ===== */
.tech-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}
.tech-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.tech-table th {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--primary);
}
.tech-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    line-height: 1.6;
}
.tech-table tr:hover td {
    background: var(--bg-warm);
}

/* ===== REFERENCE LIST ===== */
.ref-list {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.ref-list h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.ref-list ol {
    padding-left: 20px;
}
.ref-list ol li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}
.ref-list ol li a {
    color: var(--primary);
    text-decoration: none;
}
.ref-list ol li a:hover { text-decoration: underline; }

/* ===== RELATED NAV ===== */
.related-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.related-nav a {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}
.related-nav a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.related-nav a.current {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* ===== DATA HIGHLIGHT ===== */
.data-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(26,110,255,0.05) 100%);
    border: 1px dashed rgba(26,110,255,0.3);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}
.data-highlight h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.data-highlight p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== MOBILE SUBTOPIC ===== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .related-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .subtopic-hero { min-height: 380px; padding-top: 96px; }
    .subtopic-hero h1 { font-size: clamp(24px, 6vw, 32px); }
    .content-block { padding: 24px; }
    .related-nav { grid-template-columns: 1fr; }
    .case-header { flex-wrap: wrap; }
}


/* ===== OUTPUT MORE BUTTON ===== */
.output-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.output-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    border: 1.5px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.output-more-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 110, 255, 0.25);
}
.output-more-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}
.output-more-btn:hover svg {
    transform: translateX(3px);
}

/* ===== RESPONSIVE OUTPUT MORE ===== */
@media (max-width: 768px) {
    .output-more-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}


/* ===== MOBILE NAVIGATION (phishing page specific) ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: flex; }
}

/* ===== 移动端 Footer 适配（页面级，不修改全局 style.css） ===== */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .footer-brand .logo-icon img { height: 56px !important; }
    .footer-brand p { max-width: 100% !important; }
    .footer-bottom { flex-direction: column !important; text-align: center !important; justify-content: center !important; gap: 8px !important; }
    .footer-bottom p { justify-content: center !important; font-size: 12px !important; display: flex !important; flex-wrap: wrap !important; align-items: center !important; }
    .footer-bottom img { display: inline-block !important; vertical-align: middle !important; }
    .footer-col h4 { margin-bottom: 14px !important; }
    .footer-col li { margin-bottom: 8px !important; }
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}

/* ===== 移动端 Navbar 适配（页面级，不修改全局 style.css） ===== */
@media (max-width: 768px) {
    .nav-container { padding: 0 16px !important; height: 64px !important; }
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 64px !important;
        left: 0 !important; right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 16px 24px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
        gap: 4px !important;
        border-bottom: 1px solid var(--border) !important;
        max-height: calc(100vh - 64px) !important;
        overflow-y: auto !important;
    }
    .nav-links.active { display: flex !important; }
    .nav-links a { padding: 12px 16px !important; font-size: 15px !important; }
    .mobile-toggle { display: flex !important; }
    .logo-text { font-size: 14px !important; }
    .logo-text span { font-size: 10px !important; }
    .logo-icon img { height: 36px !important; }
}
