.content-page {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-container h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-family: var(--font-title);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

section p {
    color: var(--text-main);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    color: var(--text-main);
    opacity: 0.9;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
}

.steps-box {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.steps-box p {
    margin-bottom: 0;
}

.notice {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
}

.warning-text {
    color: #ef4444 !important;
    font-weight: 600;
    margin-top: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .content-container h1 {
        font-size: 2.5rem;
    }
}