/* === Static Page (Terms, Privacy, About etc.) === */
.static-page-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 44px 0 60px;
}
.static-page-header {
    text-align: center;
    margin-bottom: 36px;
}
.static-page-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
}
.static-page-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.static-page-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* Content Card */
.static-content-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 40px;
    line-height: 1.85;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
@media (max-width: 640px) {
    .static-content-card { padding: 24px 20px; }
}

/* Content typography */
.static-content-card h2 {
    font-size: 18px; font-weight: 800; color: #fff;
    margin: 28px 0 10px;
    display: flex; align-items: center; gap: 8px;
}
.static-content-card h2::before {
    content: '';
    display: inline-block;
    width: 4px; height: 18px;
    border-radius: 3px;
    background: linear-gradient(to bottom, #e50914, #ec4899);
    flex-shrink: 0;
}
.static-content-card h3 {
    font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85);
    margin: 20px 0 8px;
}
.static-content-card p { margin-bottom: 14px; }
.static-content-card ul, .static-content-card ol {
    margin: 10px 0 16px 20px;
}
.static-content-card li { margin-bottom: 6px; }
.static-content-card a {
    color: #f87171;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.static-content-card a:hover { color: #fca5a5; }
.static-content-card strong { color: rgba(255,255,255,0.9); font-weight: 700; }
.static-content-card hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 24px 0;
}
.static-content-card blockquote {
    border-left: 3px solid rgba(229,9,20,0.5);
    padding: 10px 18px;
    background: rgba(229,9,20,0.05);
    border-radius: 0 10px 10px 0;
    margin: 16px 0;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}

/* Back button */
.static-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.static-back-btn:hover { color: #fff; }

/* Empty state */
.static-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.3);
}
.static-empty i { font-size: 44px; display:block; margin-bottom:14px; }
