.page-hero {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero h1 .accent {
    color: var(--color-accent-bright);
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-tagline strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contents-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 40px;
}

.contents-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.contents-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.contents-list li {
    margin: 0;
}

.contents-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
    padding: 2px 0;
}

.contents-list a:hover {
    color: var(--color-accent-bright);
    text-decoration: underline;
}

.wiki-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.wiki-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.wiki-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.wiki-content p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 15px;
}

.wiki-content p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.wiki-content ul,
.wiki-content ol {
    margin: 14px 0 14px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.wiki-content li {
    margin-bottom: 6px;
}

.wiki-content a {
    color: var(--color-accent-bright);
    text-decoration: none;
}

.wiki-content a:hover {
    text-decoration: underline;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.comparison-item .check {
    width: 20px;
    height: 20px;
    background: var(--bg-tertiary);
    color: var(--color-accent-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comparison-item strong {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.comparison-item span {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.step-content h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.step-content p {
    margin: 0;
    font-size: 14px;
}

code {
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    color: var(--color-accent-bright);
}

pre {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

.note {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.note strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.note.tip {
    border-left-color: #10b981;
}

.wiki-footer {
    margin-top: 60px;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.wiki-footer p {
    margin: 0 0 12px;
    color: var(--text-secondary);
}

.wiki-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wiki-footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.wiki-footer .footer-links a:hover {
    color: var(--color-accent-bright);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        width: 100%;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
    }
}