.wallet-header {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.wallet-balance-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.wallet-balance {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-balance img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.4));
}

.wallet-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.btn-charge {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--gold-gradient);
    color: #4A3000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2);
}

.wallet-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.wallet-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
}

.wallet-tab.active {
    color: var(--text);
    font-weight: 600;
}

.wallet-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

.record-list {
    padding: 0 20px;
}

.record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.record-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.record-title {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.record-time {
    font-size: 12px;
    color: var(--text-muted);
}

.record-amount {
    font-size: 16px;
    font-weight: 600;
}

.record-amount.positive {
    color: var(--gold);
}

.record-amount.negative {
    color: var(--text);
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.back-btn {
    color: var(--text);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.back-btn i {
    width: 24px;
    height: 24px;
}

.top-bar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
}
