/* ============================================
   Static Pages — Instructions & Privacy
   ============================================ */

html, body {
    overflow: auto;
}

.page-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: visible;
}

/* ─── Page Header ────────────────────────────── */
.page-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    z-index: 10;
    flex-shrink: 0;
}

.page-back {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    user-select: none;
}

.page-back:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.9);
    outline-offset: 3px;
    border-radius: 2px;
}

.page-back:hover {
    color: rgba(255, 255, 255, 0.75);
}

.page-header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    user-select: none;
    transition: opacity 0.2s ease;
}

.page-header-title:hover {
    opacity: 0.75;
}

/* ─── Page Main ──────────────────────────────── */
.page-main {
    flex: 1;
    overflow-y: auto;
    padding: 48px 24px 48px;
}

/* ─── Page Content ───────────────────────────── */
.page-content {
    max-width: 560px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    font-weight: 200;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.page-meta {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

/* ─── Sections ───────────────────────────────── */
.page-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-heading {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.8);
    margin-bottom: 14px;
}

.section-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.section-body:last-child {
    margin-bottom: 0;
}

.section-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.section-list li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 16px;
    position: relative;
}

.section-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(110, 68, 255, 0.5);
}

.list-label {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* ─── Page Footer ────────────────────────────── */
.page-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
