/* 은행 페이지 스타일 */

.bank-balance-section {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-secondary);
    margin: 0 0 15px 0;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.bank-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.bank-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.bank-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* 금액 입력 섹션 */
.amount-section {
    padding: 0;
    margin-bottom: 15px;
}

.amount-input {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.amount-btn {
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.amount-btn:active {
    background: var(--accent-blue);
    color: #fff;
}

/* 입출금 버튼 */
.action-buttons {
    display: flex;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
}

.btn-deposit,
.btn-withdraw {
    flex: 1;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-deposit {
    background: var(--accent-green);
    color: #fff;
}

.btn-withdraw {
    background: var(--accent-blue);
    color: #fff;
}

.btn-deposit:active,
.btn-withdraw:active {
    opacity: 0.8;
}

/* 안내 섹션 */
.info-section {
    padding: 15px;
    margin: 0 0 15px 0;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.info-title {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-weight: 500;
}

.info-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-list li {
    margin: 8px 0;
    padding-left: 15px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* 리셋 정보 */
.reset-info {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reset-count {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}
