/* ── Inner page layout (shared across static pages) ─────────────────────────── */
.inner-page {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.inner-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2.5rem 3rem;
    width: 100%;
}

.inner-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.inner-header .login-logo-wrap {
    animation: none;
    margin-bottom: 1rem;
}

.inner-header .login-logo {
    width: 60px;
    height: 60px;
}

.inner-header h1 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.inner-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.page-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.page-back:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.page-back .btn-icon {
    filter: brightness(0) invert(0.45);
    transition: filter 0.15s ease;
}

.page-back:hover .btn-icon {
    filter: brightness(0) invert(0.8);
}

@media (max-width: 600px) {
    .inner-container { padding: 1.5rem 1.25rem; }
    .inner-header h1  { font-size: 1.4rem; }
}

/* ── Changelog ───────────────────────────────────────────────────────────────── */
.cl-container {
    max-width: 680px;
}

.cl-header {
    margin-bottom: 2rem;
}

.cl-header p {
    opacity: 0.7;
}

.cl-timeline {
    display: flex;
    flex-direction: column;
}

.cl-entry {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--card-border);
}

.cl-entry:last-child {
    border-bottom: none;
}

.cl-entry.cl-latest {
    background: rgba(74, 111, 165, 0.07);
    border: 1px solid rgba(74, 111, 165, 0.25);
    border-radius: 10px;
    padding: 1.25rem 1.25rem;
    margin-bottom: 0.25rem;
}

.cl-entry-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.cl-version {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.cl-latest .cl-version {
    color: var(--primary-blue-hover);
    background: rgba(74, 111, 165, 0.15);
    border-color: rgba(74, 111, 165, 0.4);
}

.cl-badge-latest {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-blue-hover);
    background: rgba(74, 111, 165, 0.15);
    border: 1px solid rgba(74, 111, 165, 0.4);
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}

.cl-date {
    font-size: 0.78rem;
    color: var(--text-gray);
    opacity: 0.5;
    margin-left: auto;
    font-style: italic;
}

.cl-changes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cl-changes li {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.55;
    padding-left: 1.25rem;
    position: relative;
}

.cl-changes li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.7rem;
    top: 0.2em;
}

@media (max-width: 600px) {
    .cl-entry.cl-latest {
        padding: 1rem;
    }

    .cl-date {
        margin-left: 0;
        width: 100%;
    }
}
