:root {
    color-scheme: dark;
    --bg: #111112;
    --bg-soft: #1a1a1d;
    --panel: #1f1f22;
    --panel-soft: #27272b;
    --ink: #f4f4f5;
    --muted: #9a9aa3;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #ff3b3b;
    --accent-strong: #00e7d0;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top center, rgba(255, 59, 59, 0.18), transparent 20%),
        linear-gradient(180deg, #0f1012 0%, #151519 100%);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(15, 16, 18, 0.78);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    width: min(1120px, calc(100vw - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.topbar-logo {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, #ff6a6a, #d81717 78%);
    color: white;
    box-shadow: 0 12px 28px rgba(255, 59, 59, 0.22);
    font-size: 20px;
}

.topbar-wordmark {
    font-size: 18px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-button {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.topbar-button.active {
    background: rgba(0, 231, 208, 0.14);
    color: var(--accent-strong);
    border: 1px solid rgba(0, 231, 208, 0.24);
}

.topbar-debug-entry {
    background: rgba(0, 231, 208, 0.08);
    color: var(--accent-strong);
    border: 1px solid rgba(0, 231, 208, 0.18);
}

.debug-panel {
    position: fixed;
    top: 88px;
    right: 20px;
    width: min(360px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
    background: rgba(22, 22, 26, 0.96);
    border: 1px solid rgba(0, 231, 208, 0.18);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48);
    z-index: 40;
    display: none;
    gap: 16px;
}

.debug-panel.open {
    display: grid;
}

.debug-panel-header,
.debug-panel-actions,
.debug-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.debug-panel-kicker {
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.debug-panel-header h3 {
    margin-bottom: 0;
}

.debug-panel-body {
    display: grid;
    gap: 14px;
}

.debug-toggle-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-strong);
}

.debug-panel-close,
.debug-danger {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.debug-panel-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--ink);
}

.debug-danger {
    background: rgba(255, 59, 59, 0.18);
    border: 1px solid rgba(255, 59, 59, 0.28);
    color: #ff9a9a;
}

.page {
    width: min(1120px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 40px 0 64px;
}

.hero,
.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-shell {
    padding: 22px 22px 30px;
    margin-bottom: 28px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #c7c7ce;
    font-size: 12px;
}

h1, h2, h3, p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
    margin-bottom: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

h1 span {
    color: var(--accent);
}

.lede,
.panel-header p,
.status,
.meta,
.message {
    color: var(--muted);
}

.lede {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.bottom-grid {
    align-items: start;
}

.topup-status {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.topup-panel,
.topup-success {
    padding: 24px;
}

.topup-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.topup-summary-card,
.topup-pack-card {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
}

.topup-balance,
.topup-user-type,
.topup-pack-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
}

.topup-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.topup-pack-card h2 {
    margin-bottom: 8px;
}

.topup-pack-button {
    width: 100%;
    margin-top: 14px;
}

.topup-provider-note {
    margin-top: 18px;
}

.topup-order-card {
    padding: 24px;
}

.topup-order-meta {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.topup-qr-wrap {
    margin-top: 20px;
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.topup-qr-image {
    width: min(320px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
    background: white;
    padding: 14px;
}

.panel {
    padding: 24px;
    background: var(--bg-soft);
}

.panel-header {
    margin-bottom: 20px;
}

.panel-header-inline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
}

button {
    width: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 14px 20px;
    font: inherit;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
}

button {
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease;
}

button:hover {
    transform: translateY(-1px);
    background: var(--accent-strong);
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

button.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    border: 1px solid var(--line);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 22px;
}

.instruction-list,
.timeline {
    display: grid;
    gap: 14px;
}

.instruction-card,
.timeline-item,
.stat-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.instruction-card {
    grid-template-columns: 40px 1fr;
    align-items: start;
}

.step {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 59, 59, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.endpoint-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: #141416;
    color: #d9fff9;
    border: 1px solid var(--line);
}

.endpoint-label,
.timeline-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.timeline-kicker,
.timeline-type,
.icon-line,
.event-place {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-badge {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex: 0 0 auto;
}

.icon-badge svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.endpoint-box code {
    display: block;
    overflow-wrap: anywhere;
    font-size: 14px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stat-card {
    align-content: start;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-strong);
}

.stat-label {
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.directory-filters {
    display: flex;
    align-items: end;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.filter-field {
    display: grid;
    gap: 8px;
    min-width: 180px;
}

.filter-field span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.filter-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    color: var(--ink);
    font: inherit;
}

.card {
    overflow: hidden;
    background: var(--panel-soft);
    border-radius: 22px;
    border: 1px solid var(--line);
}

.card-credit {
    border-color: rgba(0, 231, 208, 0.22);
    box-shadow: inset 0 0 0 1px rgba(0, 231, 208, 0.06);
}

.card-basic {
    border-color: var(--line);
}

.card-link {
    display: block;
    transition: transform 120ms ease, border-color 120ms ease;
}

.card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 231, 208, 0.35);
}

.card img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 16px;
}

.chip {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e9e9ed;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.status-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.status-pill-active,
.status-pill-chatting {
    background: rgba(0, 231, 208, 0.12);
    color: var(--accent-strong);
    border-color: rgba(0, 231, 208, 0.24);
}

.status-pill-dating {
    background: rgba(255, 179, 71, 0.14);
    color: #ffc66d;
    border-color: rgba(255, 179, 71, 0.28);
}

.status-pill-married,
.status-pill-family,
.status-pill-in-relationship {
    background: rgba(255, 59, 59, 0.14);
    color: #ff8b8b;
    border-color: rgba(255, 59, 59, 0.28);
}

.status-pill-neutral {
    background: rgba(255, 255, 255, 0.06);
    color: #ececf0;
    border-color: var(--line);
}

.user-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.user-type-badge-compact {
    padding: 7px 10px;
    font-size: 11px;
}

.user-type-badge-credit {
    background: linear-gradient(135deg, rgba(0, 231, 208, 0.18), rgba(255, 215, 128, 0.14));
    color: #b9fff7;
    border-color: rgba(0, 231, 208, 0.24);
    box-shadow: 0 8px 20px rgba(0, 231, 208, 0.1);
}

.user-type-badge-basic {
    background: rgba(255, 255, 255, 0.05);
    color: #d7d7dc;
    border-color: var(--line);
}

.stack {
    display: grid;
    gap: 16px;
}

.thread,
.relationship {
    border-radius: 20px;
    padding: 16px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
}

.thread h3,
.relationship h3 {
    margin-bottom: 8px;
}

.message {
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    margin-top: 8px;
}

.status {
    min-height: 24px;
    margin: 8px 0 0;
}

.mascot {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 28px;
    background: radial-gradient(circle at 30% 30%, #ff6a6a, #d81717 78%);
    font-size: 42px;
    box-shadow: 0 16px 40px rgba(255, 59, 59, 0.28);
}

.entry-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 26px 0 24px;
    flex-wrap: wrap;
}

.tab-button {
    min-width: 168px;
    font-weight: 700;
}

.tab-button.active {
    background: var(--accent);
}

.skill-card {
    width: min(620px, 100%);
    margin: 0 auto;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    text-align: left;
}

.skill-card h2 {
    text-align: center;
    margin-bottom: 18px;
}

.skill-callout {
    padding: 18px;
    border-radius: 14px;
    background: #121214;
    border: 1px solid rgba(0, 231, 208, 0.12);
    margin-bottom: 18px;
}

.skill-callout code {
    color: var(--accent-strong);
    font-size: 15px;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: anywhere;
}

.skill-steps {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
}

.skill-steps li::marker {
    color: var(--accent);
    font-weight: 700;
}

.info-grid {
    align-items: start;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 700;
}

.text-link:hover {
    color: white;
}

.page-hero {
    margin-bottom: 24px;
}

.page-title,
.detail-title {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    margin-bottom: 12px;
}

.detail-title-left {
    text-align: left;
    margin-top: 0;
}

.detail-shell {
    margin-bottom: 18px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 12px;
}

.detail-profile {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.detail-profile-credit {
    border-color: rgba(0, 231, 208, 0.24);
    box-shadow: inset 0 0 0 1px rgba(0, 231, 208, 0.06);
}

.detail-profile-basic {
    border-color: var(--line);
}

.detail-profile-head {
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.detail-avatar-card {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 16px;
}

.detail-avatar,
.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.detail-avatar {
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    border-radius: 12px;
}

.detail-avatar-credit {
    border-color: rgba(0, 231, 208, 0.28);
    box-shadow: 0 14px 34px rgba(0, 231, 208, 0.08);
}

.detail-user-type-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 2px;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-media {
    display: grid;
    align-content: start;
    gap: 12px;
}

.gallery-card {
    margin: 0;
    padding: 10px;
    border-radius: 16px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
}

.gallery-card img {
    aspect-ratio: 4 / 4.6;
}

.event-card {
    overflow: hidden;
}

.event-image {
    width: 100%;
    display: block;
    margin-top: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.event-image-compact {
    width: min(78%, 520px);
    margin-left: auto;
    margin-right: auto;
}

.detail-copy {
    display: grid;
    align-content: start;
    gap: 8px;
    max-width: 820px;
    justify-items: start;
}

.detail-bio {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 4px;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fact-card {
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
}

.detail-status-highlight {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    width: auto;
    margin-top: 6px;
}

.detail-status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-status-meta {
    color: var(--muted);
    font-size: 13px;
}

.detail-status-link {
    font-size: 14px;
}

.detail-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

.detail-status-entry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-status-avatar {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.fact-card-partner {
    gap: 8px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.partner-name {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 14px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 12px;
}

.timeline-meta {
    display: grid;
    justify-items: end;
    gap: 8px;
    flex: 0 0 auto;
}

.timeline-date {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-type {
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fact-card p,
.relationship p,
.meta {
    font-size: 13px;
    line-height: 1.4;
}

.detail-copy > .meta {
    margin-bottom: 4px;
}

.detail-copy .chip {
    padding: 4px 9px;
    font-size: 11px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.detail-copy .status-pill {
    padding: 6px 10px;
    font-size: 11px;
}

.detail-copy .eyebrow {
    margin-bottom: 4px;
}

.detail-copy .detail-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    margin-bottom: 2px;
    text-align: left;
    justify-self: start;
    width: 100%;
}

.detail-media .panel-header {
    margin-bottom: 2px;
}

.detail-media .panel-header h2 {
    font-size: 18px;
    margin-bottom: 4px;
}

.detail-media .panel-header p {
    font-size: 13px;
    margin-bottom: 0;
}

.timeline-type-event {
    background: rgba(255, 59, 59, 0.14);
    color: #ff8b8b;
    border: 1px solid rgba(255, 59, 59, 0.25);
}

.timeline-type-conversation {
    background: rgba(0, 231, 208, 0.12);
    color: var(--accent-strong);
    border: 1px solid rgba(0, 231, 208, 0.24);
}

.conversation-card {
    display: grid;
    gap: 14px;
}

.chat-thread {
    display: grid;
    gap: 12px;
}

.chat-bubble {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-bubble-left {
    justify-content: flex-start;
    width: 100%;
}

.chat-bubble-right {
    justify-content: flex-end;
    flex-direction: row-reverse;
    width: 100%;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--line);
    flex: 0 0 auto;
}

.chat-copy {
    max-width: min(72%, 640px);
}

.chat-name {
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--muted);
}

.chat-message {
    padding: 14px 16px;
    border-radius: 18px;
    line-height: 1.65;
    border: 1px solid var(--line);
}

.chat-bubble-left .chat-message {
    background: rgba(255, 255, 255, 0.04);
    border-top-left-radius: 6px;
}

.chat-bubble-right .chat-copy {
    text-align: right;
    margin-left: auto;
}

.chat-bubble-left .chat-copy {
    margin-right: auto;
}

.chat-bubble-right .chat-message {
    background: rgba(0, 231, 208, 0.08);
    border-color: rgba(0, 231, 208, 0.18);
    border-top-right-radius: 6px;
}

.event-place {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px auto 0;
    font-size: 13px;
    color: var(--muted);
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.debug-block {
    margin-top: 10px;
    border: 1px solid rgba(0, 231, 208, 0.22);
    background: rgba(0, 231, 208, 0.05);
    border-radius: 14px;
    overflow: hidden;
}

.debug-block summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.debug-block summary::-webkit-details-marker {
    display: none;
}

.debug-block pre {
    margin: 0;
    padding: 0 12px 12px;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: "SFMono-Regular", "Menlo", monospace;
    font-size: 12px;
    line-height: 1.55;
    color: #cbfff8;
}

.debug-section {
    padding: 0 12px 12px;
}

.debug-section-title {
    margin: 0 0 8px;
    color: #e8fffc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.debug-section ul {
    margin: 0;
    padding-left: 18px;
    color: #d6fffa;
    display: grid;
    gap: 6px;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 880px) {
    .topbar-inner {
        width: min(100vw - 20px, 1200px);
        min-height: 64px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .page {
        width: min(100vw - 20px, 1200px);
        padding-top: 20px;
    }

    .hero,
    .panel {
        border-radius: 22px;
        padding: 18px;
    }

    .status-grid {
        grid-template-columns: 1fr 1fr;
    }

    .skill-card {
        padding: 18px;
    }

    .panel-header-inline {
        align-items: start;
    }

    .timeline-header {
        flex-direction: column;
    }

    .timeline-meta {
        justify-items: start;
    }

    .detail-profile-head,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .detail-facts {
        grid-template-columns: 1fr;
    }

    .chat-copy {
        max-width: 100%;
    }
}
