/* 基础样式 — Apple-style Light Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: rgb(235, 235, 242);
    color: #1d1d1f;
    min-height: 100vh;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== 导航栏 ========== */
.nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-btn {
    background: transparent;
    color: #86868b;
    border: none;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1d1d1f;
}

.nav-btn.active {
    background: #1d1d1f;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ========== 页面切换 ========== */
.page {
    display: none;
    animation: pageIn 0.3s ease;
}

.page.active {
    display: block;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== 页面标题 ========== */
.header {
    text-align: center;
    margin-bottom: 28px;
}

.header h1 {
    color: #1d1d1f;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.controls select {
    background: #fff;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2386868b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.controls select option {
    background: #fff;
    color: #1d1d1f;
}

.controls select:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.controls select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 252, 0.25);
    border-color: rgba(0, 125, 252, 0.5);
}

.week-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.week-select {
    background: #fff;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    max-width: 400px;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2386868b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.week-select:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.week-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 252, 0.25);
    border-color: rgba(0, 125, 252, 0.5);
}

.week-select option {
    background: #fff;
    color: #1d1d1f;
}

.week-nav button {
    background: #fff;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 7px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.15s ease;
}

.week-nav button:hover {
    background: #f5f5f7;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.week-nav span {
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.date-range {
    color: #86868b;
    font-size: 13px;
    margin-bottom: 8px;
}

.meta {
    color: #86868b;
    font-size: 13px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========== 战区卡片 ========== */
.zones-container {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.zone-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zone-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.zone-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.zone-tag {
    font-size: 11px;
    color: #86868b;
    font-weight: 500;
    background: #f5f5f7;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 6px;
}

.zone-sub-label {
    font-size: 12px;
    color: #86868b;
    margin-left: 6px;
}

.zone-desc {
    color: #86868b;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.zone-info {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
}

.zone-info:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.info-desc {
    color: #6e6e73;
    font-size: 11px;
    line-height: 1.5;
}

/* 混合区 */
.mixed-zone {
    flex: 2;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mixed-zone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.mixed-zone-header {
    color: #1d1d1f;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.mixed-zone-header .tag {
    font-size: 11px;
    color: #86868b;
    margin-left: 8px;
}

.mixed-zone-header .sub-zone-labels {
    font-size: 12px;
    font-weight: 400;
    color: #86868b;
    margin-left: 10px;
}

.mixed-zone-content {
    display: flex;
    gap: 10px;
}

.mixed-sub-card {
    flex: 1;
    background: #f5f5f7;
    padding: 14px;
    border-radius: 10px;
}

.mixed-sub-header {
    font-size: 11px;
    color: #86868b;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.mixed-sub-header .zone-tag {
    font-size: 10px;
    padding: 1px 6px;
}

/* ========== 战区历史查询 ========== */
.zone-history-section {
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.zone-history-section h3 {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.zone-history-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.zone-history-result {
    margin-top: 16px;
}

.zone-history-loading {
    color: #86868b;
    font-size: 13px;
    padding: 10px 0;
}

.zone-history-card {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 16px;
}

.zone-history-title {
    font-size: 15px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 14px;
}

.zone-history-record {
    margin-bottom: 14px;
}

.zone-history-record:last-child {
    margin-bottom: 0;
}

.zone-history-label {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 4px;
    font-weight: 500;
}

.zone-history-score {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.zone-history-score.my-score {
    color: #6e6e73;
}

.zone-history-meta {
    font-size: 12px;
    color: #86868b;
}

/* ========== 分隔线 ========== */
.divider {
    height: 0.5px;
    background: rgba(0, 0, 0, 0.08);
    margin: 28px 0;
}

/* ========== 排行榜 ========== */
.rankings h2 {
    color: #1d1d1f;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.refresh-btn {
    background: transparent;
    color: #86868b;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s ease;
}

.refresh-btn:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

.refresh-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.top-label {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
}

.ranking-table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ranking-header {
    display: flex;
    padding: 12px 20px;
    background: #f5f5f7;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    color: #6e6e73;
    letter-spacing: 0.01em;
}

.ranking-header .col-rank { width: 50px; flex-shrink: 0; }
.ranking-header .col-player { width: 200px; flex-shrink: 0; }
.ranking-header .col-zone-detail { flex: 1; text-align: center; min-width: 0; }
.ranking-header .col-total { width: 100px; text-align: right; flex-shrink: 0; }
.ranking-header .sortable { cursor: pointer; user-select: none; }
.ranking-header .sortable:hover { color: #1d1d1f; }
.sort-arrow { font-size: 11px; margin-left: 2px; opacity: 0.4; }
.sortable:hover .sort-arrow { opacity: 1; }

.ranking-row {
    display: flex;
    padding: 11px 20px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
    align-items: center;
    font-size: 13px;
    transition: background 0.15s ease;
}

.ranking-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

.ranking-row:last-child {
    border-bottom: none;
}

.rank-num {
    width: 50px;
    font-weight: 700;
    color: #86868b;
    flex-shrink: 0;
}

.rank-num.top-1 { color: #1d1d1f; }
.rank-num.top-2 { color: #424245; }
.rank-num.top-3 { color: #6e6e73; }

.player-info {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.player-avatar-sm {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.player-avatar-sm img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.player-avatar-sm .frame-sm {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.player-text {
    min-width: 0;
}

.player-name {
    color: #1d1d1f;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guild-name {
    color: #86868b;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-id-text {
    color: #86868b;
    font-size: 10px;
}

.player-sign {
    color: #86868b;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.ranking-player {
    cursor: pointer;
}

.ranking-player:hover .player-name {
    color: #0066cc;
}

.zone-detail {
    flex: 1;
    text-align: center;
    min-width: 0;
    padding: 0 4px;
}

.zone-name-sm {
    display: none;
}

.zone-score-val {
    font-size: 13px;
    color: #1d1d1f;
    font-weight: 600;
    margin-bottom: 4px;
}

.zone-chars {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.char-row {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.char-icon-sm {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.char-name-sm {
    font-size: 11px;
    color: #6e6e73;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
}

.char-bp {
    font-size: 10px;
    color: #86868b;
    flex-shrink: 0;
}

.cub-icon-sm {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.total-score {
    width: 100px;
    color: #1d1d1f;
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
}

/* ========== 玩家查询 ========== */
.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box input {
    background: #fff;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    width: 300px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.search-box input::placeholder {
    color: #86868b;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 252, 0.25);
    border-color: rgba(0, 125, 252, 0.5);
}

.search-box button {
    background: #1d1d1f;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s ease;
}

.search-box button:hover {
    opacity: 0.85;
}

/* ========== 历史查询 ========== */
.history-section {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.history-header h3 {
    font-size: 16px;
    color: #1d1d1f;
    font-weight: 700;
}

.clear-btn {
    background: transparent;
    color: #86868b;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.clear-btn:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

.history-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f7;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.history-item:hover {
    background: #ececee;
}

.history-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.history-info {
    display: flex;
    flex-direction: column;
}

.history-name {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 600;
}

.history-id {
    font-size: 11px;
    color: #86868b;
}

.history-empty {
    color: #86868b;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}

/* ========== 玩家信息 ========== */
.player-info-container {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.player-profile {
    display: flex;
    gap: 28px;
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.player-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.player-avatar .frame {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: contain;
    pointer-events: none;
}

.player-details {
    flex: 1;
}

.player-details h2 {
    font-size: 26px;
    color: #1d1d1f;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.player-meta {
    display: flex;
    gap: 20px;
    color: #86868b;
    font-size: 14px;
    margin-bottom: 8px;
}

.player-meta span:first-child {
    color: #1d1d1f;
    font-weight: 600;
}

.player-guild,
.player-likes {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 8px;
}

.player-actions {
    display: flex;
    gap: 8px;
}

.bind-set-btn {
    background: #1d1d1f;
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s ease;
}

.bind-set-btn:hover {
    opacity: 0.85;
}

.follow-set-btn {
    background: transparent;
    color: #6e6e73;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
}

.follow-set-btn:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

/* ========== 角色列表 ========== */
.characters-section {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.characters-section h3 {
    font-size: 20px;
    color: #1d1d1f;
    margin-bottom: 18px;
    font-weight: 700;
}

.characters-section h3 span {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.character-card {
    display: flex;
    gap: 14px;
    background: #f5f5f7;
    padding: 14px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.character-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.character-hidden {
    opacity: 0.4;
}

.hidden-tag {
    display: inline-block;
    font-size: 10px;
    color: #86868b;
    background: rgba(0, 0, 0, 0.05);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 4px;
    vertical-align: middle;
}

.character-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.character-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.character-info {
    flex: 1;
    min-width: 0;
}

.character-name {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-frame {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 6px;
}

.character-name .character-frame {
    display: inline;
    margin: 0 0 0 6px;
    font-weight: 400;
    font-size: 12px;
}

.character-stats {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

.character-stats span {
    background: rgba(0, 0, 0, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
    color: #6e6e73;
    font-weight: 500;
}

/* 角色阶级标签 — 功能配色保留 */
.quality-tag {
    font-weight: 700;
    letter-spacing: 1px;
}

.quality-tag.quality-1 {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
}

.quality-tag.quality-2 {
    color: #af52de;
    background: rgba(175, 82, 222, 0.1);
}

.quality-tag.quality-3 {
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.1);
}

.quality-tag.quality-4 {
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.1);
}

.quality-tag.quality-5 {
    color: #ff9500;
    background: rgba(255, 149, 0, 0.1);
    text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}

.quality-tag.quality-6 {
    color: #ff6b00;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 45, 0, 0.12));
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 45, 0, 0.3);
    animation: fire-glow 1.5s ease-in-out infinite alternate;
}

@keyframes fire-glow {
    0% { text-shadow: 0 0 10px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 45, 0, 0.3); }
    100% { text-shadow: 0 0 14px rgba(255, 149, 0, 0.7), 0 0 28px rgba(255, 69, 0, 0.5); }
}

/* ========== 幻痛囚笼 ========== */
.ppc-bosses {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.ppc-boss-card {
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 240px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ppc-boss-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ppc-boss-icon {
    width: 100%;
    height: auto;
    display: block;
}

.ppc-boss-name {
    font-size: 15px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    padding: 12px;
}

/* ========== 我的页面 ========== */
.mine-section {
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mine-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.mine-section-header h3 {
    font-size: 17px;
    color: #1d1d1f;
    font-weight: 700;
}

.mine-section-header h3 span {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
}

.bind-empty {
    text-align: center;
    padding: 20px;
    color: #86868b;
}

.bind-input-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bind-input {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    width: 240px;
    transition: box-shadow 0.2s ease;
}

.bind-input::placeholder {
    color: #86868b;
}

.bind-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 252, 0.25);
    border-color: rgba(0, 125, 252, 0.5);
    background: #fff;
}

.bind-go-btn {
    background: #1d1d1f;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s ease;
}

.bind-go-btn:hover {
    opacity: 0.85;
}

.bind-go-btn:active {
    opacity: 0.7;
}

.bind-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bind-player-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bind-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.bind-name {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 3px;
}

.bind-id {
    font-size: 13px;
    color: #86868b;
}

.bind-actions {
    display: flex;
    gap: 8px;
}

.bind-btn {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s ease;
}

.bind-btn:hover {
    background: #ececee;
}

.bind-btn-unbind {
    background: transparent;
    color: #86868b;
    border-color: rgba(0, 0, 0, 0.08);
}

.bind-btn-unbind:hover {
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.06);
}

/* 关注列表 */
.follow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.follow-empty {
    color: #86868b;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.follow-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f7;
    padding: 10px 14px;
    border-radius: 10px;
}

.follow-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.follow-info {
    display: flex;
    flex-direction: column;
}

.follow-name {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 600;
}

.follow-id {
    font-size: 11px;
    color: #86868b;
}

.follow-actions {
    display: flex;
    gap: 6px;
    margin-left: 8px;
}

.follow-action-btn {
    background: transparent;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    color: #86868b;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.follow-action-btn:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

/* ========== 得分输入 ========== */
.score-input-grid {
    display: flex;
    gap: 10px;
}

.score-input-item {
    flex: 1;
    background: #f5f5f7;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: background 0.15s ease;
}

.score-input-item:hover {
    background: #ececee;
}

.score-input-label {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 8px;
    font-weight: 600;
}

.score-input-field {
    background: #fff;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.score-input-field::placeholder {
    color: #86868b;
}

.score-input-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 125, 252, 0.25);
    border-color: rgba(0, 125, 252, 0.5);
}

.score-readonly {
    opacity: 0.6;
}

.score-readonly-val {
    background: #f5f5f7;
    color: #6e6e73;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/* 评价标签 — 功能配色保留 */
.evaluation-box {
    margin-top: 12px;
    text-align: center;
}

.eval-tag {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 10px;
    letter-spacing: 2px;
}

.eval-desc {
    font-size: 12px;
    color: #86868b;
    margin-top: 6px;
}

.eval-level-0 {
    color: #86868b;
    background: rgba(0, 0, 0, 0.05);
}

.eval-level-1 {
    color: #007aff;
    background: rgba(0, 122, 255, 0.08);
}

.eval-level-2 {
    color: #af52de;
    background: rgba(175, 82, 222, 0.08);
}

.eval-level-3 {
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.08);
}

.eval-level-4 {
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.08);
}

.eval-level-5 {
    color: #ff9500;
    background: rgba(255, 149, 0, 0.08);
    text-shadow: 0 0 6px rgba(255, 149, 0, 0.25);
}

.eval-level-6 {
    color: #ff6b00;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 45, 0, 0.1));
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.4), 0 0 16px rgba(255, 45, 0, 0.3);
    animation: fire-glow 1.5s ease-in-out infinite alternate;
}

.score-history {
    margin-top: 16px;
}

.score-history-title {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.score-history-title:hover {
    color: #1d1d1f;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.score-table th {
    text-align: left;
    color: #86868b;
    padding: 8px 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    font-weight: 500;
}

.score-table td {
    padding: 8px 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
    color: #1d1d1f;
}

.score-table tr:hover td {
    background: #f5f5f7;
}

.score-total {
    font-weight: 700;
    color: #1d1d1f;
}

.score-delete {
    background: transparent;
    border: none;
    color: #86868b;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.15s ease;
}

.score-delete:hover {
    color: #ff3b30;
}

/* ========== 弹窗 ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 0.5px rgba(0, 0, 0, 0.08);
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-wide::-webkit-scrollbar {
    display: none;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    color: #6e6e73;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

.boss-detail-header {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.boss-detail-icon {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

.boss-detail-info {
    flex: 1;
}

.boss-detail-name {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.boss-detail-desc {
    color: #6e6e73;
    font-size: 14px;
    line-height: 1.6;
}

.boss-stages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boss-stage {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 18px;
}

.boss-stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.boss-stage-difficulty {
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
}

.boss-stage-score {
    font-size: 13px;
    color: #86868b;
}

.boss-stage-section {
    margin-bottom: 14px;
}

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

.boss-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #6e6e73;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.boss-buff {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 6px;
    border: 0.5px solid rgba(0, 0, 0, 0.04);
}

.boss-buff:last-child {
    margin-bottom: 0;
}

.boss-buff-name {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.boss-buff-desc {
    font-size: 12px;
    color: #6e6e73;
    line-height: 1.5;
}

.boss-skills {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.boss-skill {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.boss-skill-name {
    color: #1d1d1f;
    font-weight: 600;
    white-space: nowrap;
    min-width: fit-content;
}

.boss-skill-desc {
    color: #6e6e73;
    line-height: 1.4;
}

/* ========== 角色详情弹窗 ========== */
.modal-wide {
    max-width: 900px;
}

.char-loading {
    text-align: center;
    color: #86868b;
    padding: 40px;
    font-size: 15px;
}

.char-header {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.char-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.char-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.char-basic {
    flex: 1;
}

.char-name-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.char-detail-name {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
}

.char-frame-name {
    font-size: 15px;
    color: #86868b;
}

.char-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.char-tag {
    background: #f5f5f7;
    color: #6e6e73;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.char-stats {
    display: flex;
    gap: 16px;
    color: #86868b;
    font-size: 13px;
}

.char-stats span {
    color: #1d1d1f;
    font-weight: 600;
}

/* 角色详情Tab */
.char-tabs {
    display: flex;
    gap: 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
}

.char-tab {
    background: transparent;
    border: none;
    color: #86868b;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.char-tab:hover {
    color: #1d1d1f;
}

.char-tab.active {
    color: #1d1d1f;
    border-bottom-color: #1d1d1f;
}

.char-tab-content {
    display: none;
}

.char-tab-content.active {
    display: block;
}

/* 技能列表 */
.skill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-item {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 14px;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.skill-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.skill-name {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.skill-level {
    font-size: 12px;
    color: #86868b;
    margin-left: auto;
}

.skill-desc-title {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 4px;
    font-weight: 500;
}

.skill-desc-text {
    font-size: 12px;
    color: #86868b;
    line-height: 1.6;
}

/* 意识 */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.memory-item {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 10px;
}

.memory-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.memory-info {
    flex: 1;
    min-width: 0;
}

.memory-name {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
}

.memory-level {
    font-size: 11px;
    color: #86868b;
    margin-bottom: 4px;
}

.memory-resonance {
    font-size: 11px;
    color: #6e6e73;
    line-height: 1.4;
}

/* 武器 */
.weapon-section {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.weapon-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.weapon-info {
    flex: 1;
}

.weapon-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
}

.weapon-skill-name {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 2px;
}

.weapon-skill-desc {
    font-size: 11px;
    color: #86868b;
    line-height: 1.4;
}

.weapon-resonance {
    font-size: 11px;
    color: #86868b;
    margin-top: 6px;
}

/* 辅助机 */
.cub-section {
    background: #f5f5f7;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    gap: 14px;
}

.cub-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.cub-info {
    flex: 1;
}

.cub-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
}

.cub-skill {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 3px;
}

.cub-skill-desc {
    font-size: 11px;
    color: #6e6e73;
    line-height: 1.4;
}

/* ========== 数据管理 ========== */
.data-mgmt-desc {
    color: #86868b;
    font-size: 13px;
    margin-bottom: 14px;
}

.data-mgmt-actions {
    display: flex;
    gap: 10px;
}

.data-import-btn {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
}

.data-import-btn:hover {
    background: #ececee;
}

.data-mgmt-msg {
    margin-top: 10px;
    font-size: 13px;
    color: #86868b;
    min-height: 20px;
}

/* 数据与隐私说明 */
.privacy-content {
    font-size: 13px;
    color: #6e6e73;
    line-height: 1.7;
}

.privacy-content p {
    margin-bottom: 10px;
}

.privacy-content p strong {
    color: #1d1d1f;
    font-weight: 600;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* 联系开发者 */
.contact-section {
    text-align: center;
    padding: 10px 0;
}

.contact-desc {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: #12b7f5;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #0ea5d9;
}

.contact-icon {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.contact-qq {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #86868b;
}

.contact-tip {
    margin-top: 8px;
    font-size: 12px;
    color: #86868b;
}

/* ========== 响应式 ========== */
@media (max-width: 900px) {
    .zones-container {
        flex-direction: column;
    }

    .mixed-zone-content {
        flex-direction: column;
    }

    .meta {
        flex-direction: column;
        gap: 4px;
    }

    .ranking-header,
    .ranking-row {
        padding: 10px 14px;
        font-size: 12px;
    }

    .ranking-header .col-total,
    .total-score {
        width: 80px;
    }

    .player-info {
        width: 150px;
    }

    .player-avatar-sm {
        display: none;
    }

    .char-name-sm {
        max-width: 40px;
    }

    .player-sign {
        display: none;
    }

    .player-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .player-meta {
        justify-content: center;
    }

    .search-box input {
        width: 200px;
    }

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

    .ppc-bosses {
        flex-direction: column;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-wide {
        max-width: 95%;
    }

    .char-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .char-tags {
        justify-content: center;
    }

    .char-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .char-tabs {
        overflow-x: auto;
    }

    .char-tab {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .weapon-section,
    .cub-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* 小屏手机：排行榜卡片布局 */
@media (max-width: 600px) {
    .ranking-table {
        overflow-x: auto;
    }

    .ranking-header {
        display: none;
    }

    .ranking-row {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 6px 0;
        align-items: flex-start;
    }

    .rank-num {
        width: 30px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2px;
    }

    .player-info {
        width: calc(100% - 40px);
        gap: 6px;
    }

    .player-name {
        font-size: 14px;
    }

    .player-sign {
        display: none;
    }

    .col-zone-detail,
    .zone-detail {
        width: 33.33%;
        flex: none;
        padding: 4px 2px;
    }

    .zone-name-sm {
        display: block;
        font-size: 10px;
        color: #86868b;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .zone-score-val {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .zone-chars {
        display: none;
    }

    .col-total,
    .total-score {
        width: 100%;
        text-align: left;
        padding-top: 4px;
        border-top: 0.5px solid rgba(0,0,0,0.06);
        margin-top: 4px;
        font-size: 14px;
    }

    .total-score::before {
        content: '总分: ';
        font-weight: 400;
        color: #86868b;
        font-size: 12px;
    }
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 20px 0 16px;
    font-size: 12px;
    color: #86868b;
}

.footer a {
    color: #86868b;
    text-decoration: none;
}

.footer a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

.site-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #86868b;
}

.site-stats strong {
    color: #6e6e73;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.stats-divider {
    color: rgba(0, 0, 0, 0.1);
}

/* ========== 登录表单 ========== */
.login-form {
    padding: 20px 24px;
}

.login-input-row {
    margin-bottom: 12px;
}

.login-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: #1d1d1f;
    outline: none;
    transition: border-color 0.2s;
}

.login-input:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.login-input::placeholder {
    color: #86868b;
}

.login-btn {
    width: 100%;
    margin-top: 4px;
}

.login-hint {
    margin-top: 12px;
    font-size: 12px;
    color: #86868b;
    text-align: center;
}

.login-error {
    margin-top: 8px;
    font-size: 13px;
    color: #ff3b30;
    text-align: center;
    min-height: 20px;
}

/* ========== 已登录状态 ========== */
.logged-in-info {
    padding: 20px 24px;
    text-align: center;
}

.logged-in-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.logged-in-name {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
}

.logged-in-id {
    font-size: 13px;
    color: #86868b;
}

.logged-in-status {
    font-size: 13px;
    color: #34c759;
    margin-bottom: 16px;
}
