:root {
    --bg-main: #0b0f19;
    --bg-card: #131826;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #8b5cf6; /* 바이올렛 */
    --primary-hover: #7c3aed;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --border-color: #1f293d;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --card-hover-shadow: 0 12px 24px -4px rgba(139, 92, 246, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Pretendard', sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }

/* Header */
.site-header { background: #0b0f19; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #ffffff; font-size: 1.25rem; font-weight: 800; }
.logo-core { width: 10px; height: 10px; background: #8b5cf6; border-radius: 50%; box-shadow: 0 0 12px #8b5cf6; }
.logo-badge { background: #2e1065; color: #c4b5fd; font-size: 0.72rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; border: 1px solid rgba(139, 92, 246, 0.4); }
.site-nav .nav-list { display: flex; list-style: none; gap: 24px; }
.nav-link { color: #94a3b8; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

/* 🌟 라이브 노드 트래커 인트로 히어로 🌟 */
.vault-hero-section { background: radial-gradient(circle at 50% 0%, #2e1065 0%, #0b0f19 80%); padding: 55px 20px 42px; text-align: center; border-bottom: 1px solid var(--border-color); }
.hero-container { max-width: 900px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.4); color: #c4b5fd; padding: 4px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 800; margin-bottom: 16px; }
.hero-title { font-size: 2.25rem; font-weight: 900; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.5px; background: linear-gradient(to right, #ffffff, #ddd6fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 1rem; color: #94a3b8; line-height: 1.6; margin-bottom: 24px; }

/* 실시간 노드 트래커 바 */
.node-tracker-bar { display: flex; justify-content: center; gap: 24px; background: rgba(19, 24, 38, 0.8); border: 1px solid var(--border-color); border-radius: 12px; padding: 14px 20px; max-width: 680px; margin: 0 auto; flex-wrap: wrap; }
.tracker-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #cbd5e1; }
.tracker-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 6px #10b981; }

/* Page Wrapper */
.main-content { min-height: calc(100vh - 350px); }
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 40px 20px 60px; }
.section-header { margin-bottom: 24px; }
.section-header h2 { font-size: 1.45rem; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); font-size: 0.92rem; margin-top: 4px; }

/* 🌟 와이드 볼트 랭킹 카드 리스트 (1~14위) 🌟 */
.vault-cards-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 50px; }
.vault-row-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: var(--card-shadow); transition: border-color 0.2s, transform 0.2s; }
.vault-row-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--card-hover-shadow); }
.vrc-left { display: flex; align-items: center; gap: 18px; flex: 1; }
.vrc-rank-box { background: #1e293b; color: #cbd5e1; width: 50px; height: 50px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--border-color); }
.vrc-rank-box.top-1 { background: #8b5cf6; color: #ffffff; border-color: #8b5cf6; }
.vrc-rank-box.top-2 { background: #06b6d4; color: #ffffff; border-color: #06b6d4; }
.vrc-rank-box.top-3 { background: #3b82f6; color: #ffffff; border-color: #3b82f6; }
.vrc-rank-num { font-size: 1.25rem; font-weight: 900; line-height: 1; }
.vrc-rank-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.5px; }

.vrc-logo-box { width: 120px; height: 52px; background: #ffffff; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; padding: 3px; }
.vrc-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

.vrc-info { flex: 1; min-width: 220px; }
.vrc-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.vrc-name { font-size: 1.15rem; font-weight: 800; color: #ffffff; }
.vrc-node-badge { background: #1e293b; color: #a5b4fc; font-size: 0.72rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; border: 1px solid #334155; }
.vrc-desc { font-size: 0.85rem; color: #94a3b8; line-height: 1.45; margin-bottom: 8px; }
.vrc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vrc-chip { background: #0b0f19; color: #94a3b8; font-size: 0.72rem; padding: 2px 8px; border-radius: 4px; border: 1px solid var(--border-color); }

.vrc-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.vrc-benefit-box { text-align: right; }
.vrc-benefit { font-size: 1.15rem; font-weight: 800; color: #c4b5fd; display: block; }
.vrc-speed-val { font-size: 0.82rem; font-weight: 700; color: #10b981; margin-top: 2px; }
.btn-vault-go { background: var(--primary); color: #ffffff; text-decoration: none; font-size: 0.88rem; font-weight: 800; padding: 10px 20px; border-radius: 6px; transition: background 0.2s; white-space: nowrap; }
.btn-vault-go:hover { background: var(--primary-hover); }

/* 클린 테이블 게시판 (슬러그 태그 완전 제거) */
.clean-board-wrap { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; margin-bottom: 40px; box-shadow: var(--card-shadow); }
.clean-board-table { width: 100%; border-collapse: collapse; text-align: left; }
.clean-board-table th { background: #0b0f19; padding: 14px 20px; font-size: 0.88rem; font-weight: 700; color: #cbd5e1; border-bottom: 1px solid var(--border-color); }
.clean-board-table td { padding: 14px 20px; font-size: 0.92rem; border-bottom: 1px solid #1f293d; color: var(--text-main); }
.clean-board-table tbody tr:last-child td { border-bottom: none; }
.clean-board-table tbody tr:hover { background: #1a2234; }
.td-board-num { width: 60px; text-align: center; color: var(--primary); font-weight: 700; }
.td-board-title a { color: #ffffff; text-decoration: none; font-weight: 600; display: block; }
.td-board-title a:hover { color: var(--primary); text-decoration: underline; }
.td-board-date { width: 110px; text-align: center; color: var(--text-muted); font-size: 0.82rem; }

/* 🌟 심층 SEO 콘텐츠 박스 🌟 */
.seo-content-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 36px; margin-bottom: 50px; line-height: 1.85; color: #cbd5e1; font-size: 0.95rem; }
.seo-content-box h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; color: #ffffff; }
.seo-content-box h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: var(--primary); }
.seo-content-box ul { margin: 10px 0 18px 24px; }
.seo-content-box li { margin-bottom: 6px; }

/* Article & Static View */
.article-view { background: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid var(--border-color); }
.article-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 12px; color: #ffffff; }
.article-meta { color: #64748b; font-size: 0.88rem; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 16px; }
.article-body { font-size: 1.02rem; line-height: 1.85; color: #cbd5e1; }
.article-body h2 { font-size: 1.3rem; font-weight: 800; margin: 28px 0 12px; color: #ffffff; }
.article-body p { margin-bottom: 16px; }

/* Detailed Footer */
.site-footer { background: #060910; color: #64748b; padding: 50px 20px 30px; border-top: 1px solid var(--border-color); }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand h3 { color: #ffffff; font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.footer-slogan { font-size: 0.88rem; color: #94a3b8; margin-bottom: 8px; }
.footer-desc { max-width: 400px; font-size: 0.82rem; line-height: 1.5; color: #64748b; }
.footer-links-grid { display: flex; gap: 50px; }
.footer-col h4 { color: #ffffff; font-size: 0.92rem; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid #131826; padding-top: 24px; font-size: 0.8rem; text-align: center; color: #475569; }
.disclaimer-text { margin-top: 6px; font-size: 0.74rem; color: #475569; }

/* Responsive Mobile */
@media screen and (max-width: 768px) {
    .header-container { height: auto; padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .site-nav { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .site-nav .nav-list { display: flex; gap: 16px; white-space: nowrap; padding-bottom: 4px; }
    
    .vault-hero-section { padding: 36px 16px 30px; }
    .hero-title { font-size: 1.45rem; }
    .node-tracker-bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px; }
    .page-wrapper { padding: 20px 14px 40px; }
    
    .vault-row-card { flex-direction: column; align-items: stretch; padding: 16px; gap: 14px; }
    .vrc-left { flex-direction: column; align-items: stretch; gap: 10px; }
    .vrc-logo-box { width: 100%; height: 46px; }
    .vrc-right { width: 100%; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 12px; }
    
    .clean-board-wrap { overflow-x: auto; }
    .clean-board-table { min-width: 440px; }
    .article-view { padding: 20px 16px; }
    .footer-links-grid { gap: 30px; }
}