/* ═══════════════════════════════════════
   PIP-BOY PAGE
   ═══════════════════════════════════════ */

.pipboy-page {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
}

.pipboy-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding: 12px 0;
}

.pipboy-title {
    font-size: 20px;
    color: var(--green);
    text-shadow: 0 0 12px rgba(var(--green-rgb), 0.3);
    letter-spacing: 2px;
}

.pipboy-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.pipboy-tab {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 16px;
    font-family: inherit;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
}

.pipboy-tab:hover {
    border-color: var(--green-dim);
    color: var(--text);
}

.pipboy-tab.active {
    border-color: var(--green);
    color: var(--green);
    background: rgba(var(--green-rgb), 0.08);
}

.pipboy-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.pipboy-card-title {
    font-size: 12px;
    color: var(--green-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.pipboy-stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
}

.pipboy-stat-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.pipboy-stat-label {
    color: var(--muted);
    min-width: 60px;
}

.pipboy-stat-value {
    color: var(--text);
    flex: 1;
}

.pipboy-stat-value.green {
    color: var(--green);
}

.pipboy-stat-value.amber {
    color: var(--amber);
}

/* XP Bar */
.xp-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.xp-bar {
    flex: 1;
    height: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.xp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), rgba(var(--green-rgb), 0.7));
    border-radius: 5px;
    transition: width 0.5s ease;
    box-shadow: 0 0 8px rgba(var(--green-rgb), 0.3);
}

.xp-bar-text {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.pipboy-coming-soon {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 24px 0;
    opacity: 0.6;
}

